php-src/Zend/tests/offset_assign.phpt

17 lines
343 B
Plaintext
Raw Normal View History

--TEST--
Crash on $x['2x']['y'] += 1 when $x is string
--FILE--
<?php
$x = "a";
$x['2x']['y'] += 1;
echo "Done\n";
?>
2018-09-16 17:16:42 +00:00
--EXPECTF--
Warning: Illegal string offset "2x" in %s on line %d
Fatal error: Uncaught Error: Cannot use string offset as an array in %soffset_assign.php:%d
Stack trace:
#0 {main}
thrown in %soffset_assign.php on line %d