On Fri, 17 Sep 2004 10:17:41 -0700, Richard Whitney <[EMAIL PROTECTED]> wrote:
> 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!

It might be good to see results from different hosts if you care to share.

Richard

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

Reply via email to