mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
11 lines
137 B
PHP
11 lines
137 B
PHP
--TEST--
|
|
Bug #32833 (Invalid opcode with $a[] .= '')
|
|
--FILE--
|
|
<?php
|
|
$test = array();
|
|
$test[] .= "ok\n";
|
|
echo $test[0];
|
|
?>
|
|
--EXPECT--
|
|
ok
|