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-- exit() may occur in a call argument --EXTENSIONS-- opcache --FILE-- <?php functi..
Decoded Output download
--TEST--
exit() may occur in a call argument
--EXTENSIONS--
opcache
--FILE--
<?php
function test($c) {
if ($c) {
var_dump(var_dump(exit("exit
")));
} else {
var_dump("test");
}
}
test(false);
test(true);
?>
--EXPECT--
string(4) "test"
exit
Did this file decode correctly?
Original Code
--TEST--
exit() may occur in a call argument
--EXTENSIONS--
opcache
--FILE--
<?php
function test($c) {
if ($c) {
var_dump(var_dump(exit("exit\n")));
} else {
var_dump("test");
}
}
test(false);
test(true);
?>
--EXPECT--
string(4) "test"
exit
Function Calls
test | 1 |
var_dump | 1 |
Stats
MD5 | 5f8c8c48b4dbc404006882cff146f23a |
Eval Count | 0 |
Decode Time | 149 ms |