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-- JIT ASSIGN: 012 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update..
Decoded Output download
--TEST--
JIT ASSIGN: 012
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
function foo() {
$a = 0;
$c = 2;
$d = 3;
if ($a) {
$b = array();
} else {
$b =& $c;
}
$b = $d;
var_dump($b, $c);
}
foo();
?>
--EXPECT--
int(3)
int(3)
Did this file decode correctly?
Original Code
--TEST--
JIT ASSIGN: 012
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
function foo() {
$a = 0;
$c = 2;
$d = 3;
if ($a) {
$b = array();
} else {
$b =& $c;
}
$b = $d;
var_dump($b, $c);
}
foo();
?>
--EXPECT--
int(3)
int(3)
Function Calls
foo | 1 |
var_dump | 1 |
Stats
MD5 | 70b3f8a0aa4a768016fe9b786d26b1fc |
Eval Count | 0 |
Decode Time | 71 ms |