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

Decoded Output download

--TEST--
JIT ASSIGN: 032
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.protect_memory=1
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
$var = "intergalactic";
$var1 = "space";
$var2 = &$var1;
$var = $var2;
var_dump($var);
var_dump($var1);
var_dump($var2);
echo "Done
";
?>
--EXPECT--
string(5) "space"
string(5) "space"
string(5) "space"
Done

Did this file decode correctly?

Original Code

--TEST--
JIT ASSIGN: 032
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.protect_memory=1
;opcache.jit_debug=257
--EXTENSIONS--
opcache
--FILE--
<?php
$var = "intergalactic";
$var1 = "space";
$var2 = &$var1;
$var = $var2;
var_dump($var);
var_dump($var1);
var_dump($var2);
echo "Done\n";
?>
--EXPECT--
string(5) "space"
string(5) "space"
string(5) "space"
Done

Function Calls

var_dump 1

Variables

$var space
$var1 space
$var2 space

Stats

MD5 9525309b24feeb6bf86053d86bd7f45b
Eval Count 0
Decode Time 83 ms