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: 008 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update..
Decoded Output download
--TEST--
JIT ASSIGN: 008
--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 = 1.0;
$c = 2.0;
$c = $a;
var_dump($a);
}
foo();
?>
--EXPECT--
float(1)
Did this file decode correctly?
Original Code
--TEST--
JIT ASSIGN: 008
--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 = 1.0;
$c = 2.0;
$c = $a;
var_dump($a);
}
foo();
?>
--EXPECT--
float(1)
Function Calls
foo | 1 |
var_dump | 1 |
Stats
MD5 | 8f2292789012a0eb1b7cd116b4f454bb |
Eval Count | 0 |
Decode Time | 109 ms |