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: 011 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update..

Decoded Output download

--TEST--
JIT ASSIGN: 011
--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;
    $c = 2;
    $d = 3;
    if ($a) {
        $b = array();
    } else {
        $b =& $c;
    }
    $b = $d;
    var_dump($b, $c);
}
foo();
?>
--EXPECT--
int(3)
int(2)

Did this file decode correctly?

Original Code

--TEST--
JIT ASSIGN: 011
--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;
    $c = 2;
    $d = 3;
    if ($a) {
        $b = array();
    } else {
        $b =& $c;
    }
    $b = $d;
    var_dump($b, $c);
}
foo();
?>
--EXPECT--
int(3)
int(2)

Function Calls

foo 1
var_dump 1

Variables

$a 1
$b 3
$c 2
$d 3

Stats

MD5 c25f847c473995124c210fa86296f0e3
Eval Count 0
Decode Time 98 ms