1--TEST-- 2Crash on $x['x']['y'] += 1 when $x is string 3--FILE-- 4<?php 5$x = "a"; 6$x['x']['y'] += 1; 7 8echo "Done\n"; 9?> 10--EXPECTF-- 11Fatal error: Cannot use string offset as an array in %s on line %d 12