php-src/Zend/tests/bug32833.phpt

11 lines
137 B
Plaintext
Raw Normal View History

2005-04-27 12:16:32 +00:00
--TEST--
2007-05-07 17:23:53 +00:00
Bug #32833 (Invalid opcode with $a[] .= '')
2005-04-27 12:16:32 +00:00
--FILE--
<?php
$test = array();
$test[] .= "ok\n";
echo $test[0];
?>
--EXPECT--
ok