mirror of
https://github.com/php/php-src.git
synced 2024-11-29 21:04:10 +08:00
22 lines
431 B
Plaintext
22 lines
431 B
Plaintext
|
--TEST--
|
||
|
Bug #44069 (Huge memory usage with concatenation using . instead of .=)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
$array = array();
|
||
|
$newstring = "";
|
||
|
$string = str_repeat('This is a teststring.', 50);
|
||
|
for($i = 1; $i <= 2000; $i++)
|
||
|
{
|
||
|
// $newstring .= $string; //This uses an expected amount of mem.
|
||
|
$newstring = $newstring . $string; //This uses very much mem.
|
||
|
|
||
|
for($j = 1; $j <= 10; $j++)
|
||
|
{
|
||
|
$array[] = 'test';
|
||
|
}
|
||
|
}
|
||
|
echo "ok\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
ok
|