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 namespace LaminasTest\Code\Reflection\TestAsset; /*** * /!\ Don't fix this file w..
Decoded Output download
<?php
namespace LaminasTest\Code\Reflection\TestAsset;
/***
* /!\ Don't fix this file with the coding style.
* The class Laminas\Code\Reflection\FunctionReflection must parse a lot of closure formats
*/
$function1 = function()
{
return 'function1';
};
$function2 = function() { return 'function2'; };
$function3 = function($arg) {
return 'function3';
};
$function4 = function()
{
$closure = function() { return 'bar'; };
return 'function4';
};
$list1 = array('closure' => function() { return 'function5'; });
$list2 = array(function() { return 'function6'; });
$list3 = array(function() { return $c = function() { return 'function7'; }; return $c(); });
$function8 = function() use ($list1) { return 'function 8'; };
/**
* closure doc block
*/
$function9 = function() {};
eval("\$function10 = function() { return 'function10'; };");
?>
Did this file decode correctly?
Original Code
<?php
namespace LaminasTest\Code\Reflection\TestAsset;
/***
* /!\ Don't fix this file with the coding style.
* The class Laminas\Code\Reflection\FunctionReflection must parse a lot of closure formats
*/
$function1 = function()
{
return 'function1';
};
$function2 = function() { return 'function2'; };
$function3 = function($arg) {
return 'function3';
};
$function4 = function()
{
$closure = function() { return 'bar'; };
return 'function4';
};
$list1 = array('closure' => function() { return 'function5'; });
$list2 = array(function() { return 'function6'; });
$list3 = array(function() { return $c = function() { return 'function7'; }; return $c(); });
$function8 = function() use ($list1) { return 'function 8'; };
/**
* closure doc block
*/
$function9 = function() {};
eval("\$function10 = function() { return 'function10'; };");
Function Calls
| None |
Stats
| MD5 | 09435078ff57b43351eee8f753416e1a |
| Eval Count | 0 |
| Decode Time | 101 ms |