TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
427 B
21 lines
427 B
--TEST--
|
|
Compound array assign with undefined variables
|
|
--SKIPIF--
|
|
<?php die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
$a[$b] += 1;
|
|
var_dump($a);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Undefined variable $a in %s on line %d
|
|
|
|
Warning: Undefined variable $b in %s on line %d
|
|
|
|
Deprecated: Using null as an array offset is deprecated, use an empty string instead in %s on line %d
|
|
|
|
Warning: Undefined array key "" in %s on line %d
|
|
array(1) {
|
|
[""]=>
|
|
int(1)
|
|
}
|
|
|