Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** @phpstub */ class FilesystemIterator extends \DirectoryIterator implements \See..
Decoded Output download
<?php
/** @phpstub */
class FilesystemIterator extends \DirectoryIterator implements \SeekableIterator, \Traversable, \Iterator
{
const CURRENT_AS_FILEINFO = 0;
const CURRENT_AS_PATHNAME = 32;
const CURRENT_AS_SELF = 16;
const CURRENT_MODE_MASK = 240;
const FOLLOW_SYMLINKS = 512;
const KEY_AS_FILENAME = 256;
const KEY_AS_PATHNAME = 0;
const KEY_MODE_MASK = 3840;
const NEW_CURRENT_AND_KEY = 256;
const SKIP_DOTS = 4096;
const UNIX_PATHS = 8192;
/**
* Constructs a new filesystem iterator
*
* @param string $path
* @param int $flags
*/
public function __construct($path, $flags = false)
{
}
/**
* The current file
*
* @return mixed The filename, file information, or $this depending on the set flags.
* See the .
*/
public function current()
{
}
/**
* Get the handling flags
*
* @return int The integer value of the set flags.
*/
public function getFlags()
{
}
/**
* Retrieve the key for the current file
*
* @return string Returns the pathname or filename depending on the set flags.
* See the .
*/
public function key()
{
}
/**
* Move to the next file
*
* @return void
*/
public function next()
{
}
/**
* Rewinds back to the beginning
*
* @return void
*/
public function rewind()
{
}
/**
* Sets handling flags
*
* @param int $flags
*
* @return void
*/
public function setFlags($flags = NULL)
{
}
} ?>
Did this file decode correctly?
Original Code
<?php
/** @phpstub */
class FilesystemIterator extends \DirectoryIterator implements \SeekableIterator, \Traversable, \Iterator
{
const CURRENT_AS_FILEINFO = 0;
const CURRENT_AS_PATHNAME = 32;
const CURRENT_AS_SELF = 16;
const CURRENT_MODE_MASK = 240;
const FOLLOW_SYMLINKS = 512;
const KEY_AS_FILENAME = 256;
const KEY_AS_PATHNAME = 0;
const KEY_MODE_MASK = 3840;
const NEW_CURRENT_AND_KEY = 256;
const SKIP_DOTS = 4096;
const UNIX_PATHS = 8192;
/**
* Constructs a new filesystem iterator
*
* @param string $path
* @param int $flags
*/
public function __construct($path, $flags = false)
{
}
/**
* The current file
*
* @return mixed The filename, file information, or $this depending on the set flags.
* See the .
*/
public function current()
{
}
/**
* Get the handling flags
*
* @return int The integer value of the set flags.
*/
public function getFlags()
{
}
/**
* Retrieve the key for the current file
*
* @return string Returns the pathname or filename depending on the set flags.
* See the .
*/
public function key()
{
}
/**
* Move to the next file
*
* @return void
*/
public function next()
{
}
/**
* Rewinds back to the beginning
*
* @return void
*/
public function rewind()
{
}
/**
* Sets handling flags
*
* @param int $flags
*
* @return void
*/
public function setFlags($flags = NULL)
{
}
}
Function Calls
None |
Stats
MD5 | f8d53b273c93c731a4da8f849d2378de |
Eval Count | 0 |
Decode Time | 80 ms |