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-- FETCH_OBJ_IS on typed object property --INI-- opcache.enable=1 opcache.enable_cli..
Decoded Output download
--TEST--
FETCH_OBJ_IS on typed object property
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
class Test {
public stdClass $data;
}
function test() {
$test = new Test;
var_dump(isset($test->data[0]));
}
test();
?>
--EXPECT--
bool(false)
Did this file decode correctly?
Original Code
--TEST--
FETCH_OBJ_IS on typed object property
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.jit_buffer_size=1M
--FILE--
<?php
class Test {
public stdClass $data;
}
function test() {
$test = new Test;
var_dump(isset($test->data[0]));
}
test();
?>
--EXPECT--
bool(false)
Function Calls
None |
Stats
MD5 | 63ee1ac027caf4ed12ba2c62687e171b |
Eval Count | 0 |
Decode Time | 93 ms |