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 /** * <b>Reflector</b> is an interface implemented by all * exportable Reflection..
Decoded Output download
<?php
/**
* <b>Reflector</b> is an interface implemented by all
* exportable Reflection classes.
*
* @link https://php.net/manual/en/class.reflector.php
*/
interface Reflector extends Stringable
{
/**
* Exports a class.
*
* @link https://php.net/manual/en/reflector.export.php
* @return string|null
* @removed 7.4
*/
public static function export();
/**
* Returns the string representation of any Reflection object.
*
* Please note that since PHP 8.0 this method is absent in this interface
* and inherits from the {@see Stringable} parent.
*
* @return string
*/
public function __toString();
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* <b>Reflector</b> is an interface implemented by all
* exportable Reflection classes.
*
* @link https://php.net/manual/en/class.reflector.php
*/
interface Reflector extends Stringable
{
/**
* Exports a class.
*
* @link https://php.net/manual/en/reflector.export.php
* @return string|null
* @removed 7.4
*/
public static function export();
/**
* Returns the string representation of any Reflection object.
*
* Please note that since PHP 8.0 this method is absent in this interface
* and inherits from the {@see Stringable} parent.
*
* @return string
*/
public function __toString();
}
Function Calls
None |
Stats
MD5 | 82405441d5dfe814cabe60b42ada4a1c |
Eval Count | 0 |
Decode Time | 94 ms |