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: 006 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update..
Decoded Output download
--TEST--
JIT ASSIGN: 006
--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 = array();
$c = array();
$a = 1;
$c = $a;
return $c;
}
var_dump(foo());
?>
--EXPECT--
int(1)
Did this file decode correctly?
Original Code
--TEST--
JIT ASSIGN: 006
--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 = array();
$c = array();
$a = 1;
$c = $a;
return $c;
}
var_dump(foo());
?>
--EXPECT--
int(1)
Function Calls
foo | 1 |
var_dump | 1 |
Stats
MD5 | e1572795ae798fa504dcd6dd5785d2dd |
Eval Count | 0 |
Decode Time | 103 ms |