Jay Blanchard wrote:
[snip]
Anyone interested in seeing how fast your server can serve up a 6.5MB
file?

Run this:

<?
$start = time();
echo $start;
echo '<br><br>';
$i = 1;
while($i < 1000001){
echo $i.' ';
$i++;
}
$end = time();
$total = $end - $start;
echo '<br><br>';
echo $total;
?>

Just a little fun!
[/snip]

How/where/why does this relate to a 6.5MB file?


I'm guesing that the output of the script equates to 6.5mb. But I'm not going to take the time to do the math. ;)


--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to