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 declare(strict_types=1); // presence of strict_types affects context merging behavio..
Decoded Output download
<?php declare(strict_types=1); // presence of strict_types affects context merging behavior
if (isset($global348)) {
echo "Var $global348 is set";
}
var_dump($global348); // should warn
if (!isset($globalB348)) {
$globalB348 = true;
}
var_dump($globalB348); // should not warn
var_dump($globalC348); // should warn
?>
Did this file decode correctly?
Original Code
<?php declare(strict_types=1); // presence of strict_types affects context merging behavior
if (isset($global348)) {
echo "Var $global348 is set";
}
var_dump($global348); // should warn
if (!isset($globalB348)) {
$globalB348 = true;
}
var_dump($globalB348); // should not warn
var_dump($globalC348); // should warn
Function Calls
None |
Stats
MD5 | 8333e61cc681a3284578638760ac2431 |
Eval Count | 0 |
Decode Time | 89 ms |