1--TEST-- 2Bug #32833 (Invalid opcode with $a[] .= '') 3--FILE-- 4<?php 5$test = array(); 6$test[] .= "ok\n"; 7echo $test[0]; 8?> 9--EXPECT-- 10ok 11