I have FreeBSD and Apache 1.3.27 running PHP 4.3.0.
Does anyone know why my script outputs are getting trucated at 64K. In other words why would the script below only print 64,000 letter a's instead of 66,000?
<?php
$foo = '';
for ($i = 0; $i < 66000; $i++)
{
$foo .= 'a';
}
echo $foo;
?>
Any help would be really appreciated because I've been looking for an answer for this for quite a while.
Thank you.