Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
--TEST-- ReflectionType possible types --FILE-- <?php $functions = [ function(): void..
Decoded Output download
--TEST--
ReflectionType possible types
--FILE--
<?php
$functions = [
function(): void {},
function(): int {},
function(): float {},
function(): string {},
function(): bool {},
function(): array {},
function(): callable {},
function(): iterable {},
function(): StdClass {}
];
foreach ($functions as $function) {
$reflectionFunc = new ReflectionFunction($function);
$returnType = $reflectionFunc->getReturnType();
var_dump($returnType->getName());
}
?>
--EXPECT--
string(4) "void"
string(3) "int"
string(5) "float"
string(6) "string"
string(4) "bool"
string(5) "array"
string(8) "callable"
string(8) "iterable"
string(8) "StdClass"
Did this file decode correctly?
Original Code
--TEST--
ReflectionType possible types
--FILE--
<?php
$functions = [
function(): void {},
function(): int {},
function(): float {},
function(): string {},
function(): bool {},
function(): array {},
function(): callable {},
function(): iterable {},
function(): StdClass {}
];
foreach ($functions as $function) {
$reflectionFunc = new ReflectionFunction($function);
$returnType = $reflectionFunc->getReturnType();
var_dump($returnType->getName());
}
?>
--EXPECT--
string(4) "void"
string(3) "int"
string(5) "float"
string(6) "string"
string(4) "bool"
string(5) "array"
string(8) "callable"
string(8) "iterable"
string(8) "StdClass"
Function Calls
None |
Stats
MD5 | 21855b5da94dc635fbcae5dc2e9804f2 |
Eval Count | 0 |
Decode Time | 83 ms |