1
0
mirror of https://github.com/php/php-src.git synced 2026-04-13 19:14:16 +02:00
Files
archived-php-src/Zend/tests/offset_assign.phpt
2020-07-10 21:05:28 +02:00

17 lines
340 B
PHP

--TEST--
Crash on $x['x']['y'] += 1 when $x is string
--FILE--
<?php
$x = "a";
$x['x']['y'] += 1;
echo "Done\n";
?>
--EXPECTF--
Warning: Illegal string offset "x" 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