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: Assign constant (with result) --INI-- opcache.enable=1 opcache.enable..
Decoded Output download
--TEST--
JIT ASSIGN: Assign constant (with result)
--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
opcache.optimization_level=0 ; disable optimizer to produce ASSIGN with result
--EXTENSIONS--
opcache
--FILE--
<?php
$a = $b = "bb";
var_dump($a, $b);
?>
--EXPECT--
string(2) "bb"
string(2) "bb"
Did this file decode correctly?
Original Code
--TEST--
JIT ASSIGN: Assign constant (with result)
--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
opcache.optimization_level=0 ; disable optimizer to produce ASSIGN with result
--EXTENSIONS--
opcache
--FILE--
<?php
$a = $b = "bb";
var_dump($a, $b);
?>
--EXPECT--
string(2) "bb"
string(2) "bb"
Function Calls
var_dump | 1 |
Stats
MD5 | d349c18a3c78ad4c09facb22de85dad7 |
Eval Count | 0 |
Decode Time | 83 ms |