mirror of
https://github.com/php/php-src.git
synced 2026-04-23 16:08:35 +02:00
c16ad918ba
https://wiki.php.net/rfc/jit_config_defaults Closes GH-12678
19 lines
260 B
PHP
19 lines
260 B
PHP
--TEST--
|
|
JIT: FETCH_OBJ 010
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
--FILE--
|
|
<?php
|
|
function foo() {
|
|
for($cnt=0;$cnt<3;$cnt++) {
|
|
$obj->ary["bas"] ??= $obj = new stdClass;
|
|
}
|
|
}
|
|
foo();
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|