summaryrefslogtreecommitdiff
path: root/Zend/tests/offset_assign.phpt
blob: 6a005910953aba43f979c2f0a63b9a979b5d78cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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 %soffset_assign.php on line %d

Fatal error: Cannot use string offset as an array in %soffset_assign.php on line %d