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 MOD: 005 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_update_pr..

Decoded Output download

--TEST--
JIT MOD: 005
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.protect_memory=1
--FILE--
<?php
class Test{
    public $prop = 32;
}

function test2($test) {
    $test->prop %= 3;
	return $test;
}

var_dump(test2(new Test));
?>
--EXPECT--
object(Test)#1 (1) {
  ["prop"]=>
  int(2)
}

Did this file decode correctly?

Original Code

--TEST--
JIT MOD: 005
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.protect_memory=1
--FILE--
<?php
class Test{
    public $prop = 32;
}

function test2($test) {
    $test->prop %= 3;
	return $test;
}

var_dump(test2(new Test));
?>
--EXPECT--
object(Test)#1 (1) {
  ["prop"]=>
  int(2)
}

Function Calls

None

Variables

None

Stats

MD5 e7a6a034f565538d52a47d067fd03dc9
Eval Count 0
Decode Time 93 ms