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 FETCH_DIM_R: 005 --INI-- opcache.enable=1 opcache.enable_cli=1 opcache.file_u..
Decoded Output download
--TEST--
JIT FETCH_DIM_R: 005
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.jit=tracing
--EXTENSIONS--
opcache
--FILE--
<?php
$gens = [];
for ($i = 0; $i < 5; $i++) {
$gens[] = $gens[-1];
}
var_dump($gens);
?>
--EXPECTF--
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
array(5) {
[0]=>
NULL
[1]=>
NULL
[2]=>
NULL
[3]=>
NULL
[4]=>
NULL
}
Did this file decode correctly?
Original Code
--TEST--
JIT FETCH_DIM_R: 005
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
opcache.jit=tracing
--EXTENSIONS--
opcache
--FILE--
<?php
$gens = [];
for ($i = 0; $i < 5; $i++) {
$gens[] = $gens[-1];
}
var_dump($gens);
?>
--EXPECTF--
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
Warning: Undefined array key -1 in %sfetch_dim_r_005.php on line 4
array(5) {
[0]=>
NULL
[1]=>
NULL
[2]=>
NULL
[3]=>
NULL
[4]=>
NULL
}
Function Calls
| None |
Stats
| MD5 | b5a4736a386fe1244cb9ed446751ef6b |
| Eval Count | 0 |
| Decode Time | 84 ms |