28 lines
495 B
PHP
28 lines
495 B
PHP
--TEST--
|
|
JIT FETCH_DIM_R: 006
|
|
--INI--
|
|
opcache.enable=1
|
|
opcache.enable_cli=1
|
|
opcache.file_update_protection=0
|
|
opcache.jit_buffer_size=1M
|
|
--FILE--
|
|
<?php
|
|
function test() {
|
|
$a['x'][1] = true;
|
|
for ($i = 0; $i < 3; $i++) {
|
|
var_dump($a['x'][0]);
|
|
}
|
|
}
|
|
test();
|
|
?>
|
|
DONE
|
|
--EXPECTF--
|
|
Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
|
|
NULL
|
|
|
|
Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
|
|
NULL
|
|
|
|
Warning: Undefined array key 0 in %sfetch_dim_r_006.php on line 5
|
|
NULL
|
|
DONE
|