|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-12-26 04:50 UTC] abies@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Fri Dec 05 02:00:01 2025 UTC |
Description: ------------ Hi, Sirs, I wrote a simple string manupluation script like this: <?php error_reporting(E_ALL); $s = "A"; for ($i = 0; $i < 27; $i++) { $s .= $s; echo "String with ".strlen($s)." bytes"; echo "<br>"; } ?> and the result of the string size is growing to 128M, it's incredible, and I tried Mandrake 9.0 with PHP 4.2.3 , the result is ok.