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

Decoded Output download

--TEST--
JIT ASSIGN: 020
--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() {
    $c = array();
    $a = 1;
    $b = 2;
    $c = $a = $b;
    var_dump($c);
}
foo();
?>
--EXPECT--
int(2)

Did this file decode correctly?

Original Code

--TEST--
JIT ASSIGN: 020
--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() {
    $c = array();
    $a = 1;
    $b = 2;
    $c = $a = $b;
    var_dump($c);
}
foo();
?>
--EXPECT--
int(2)

Function Calls

foo 1
var_dump 1

Variables

$a 2
$b 2
$c 2

Stats

MD5 b2ac426f6deb94d9b95b0ed5fb06c48b
Eval Count 0
Decode Time 92 ms