summaryrefslogtreecommitdiff
path: root/Zend/tests/bug44069.phpt
blob: b18e16b254e6b6f16ed6d78f5da0d5b55e5a785a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--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