1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/opcache/tests/jit/copy_tmp_001.phpt

26 lines
472 B
PHP

--TEST--
JIT COPY_TMP: 001
--INI--
opcache.enable=1
opcache.enable_cli=1
opcache.file_update_protection=0
opcache.protect_memory=1
--FILE--
<?php
function test() {
echo "";
}
$a = [];
$a[test()] ??= 1;
var_dump($a);
?>
--EXPECTF--
Deprecated: Using null as an array offset is deprecated, use an empty string instead in %s on line %d
Deprecated: Using null as an array offset is deprecated, use an empty string instead in %s on line %d
array(1) {
[""]=>
int(1)
}