Posted by Rasmus Lerdorf on 09/06/05 13:06
Chris Shiflett wrote:
> 3. Chris's modified test script:
>
> header('Location: http://www.php.net/');
> $fp = fopen('/tmp/log.txt', 'w');
> for ($i = 0; $i < 30; $i++)
> {
> $str = "Count $i\n";
> echo str_repeat($str, 1000);
> fputs($fp, $str);
> sleep(1);
> flush();
> }
This redirects right away for me. Try it:
http://lerdorf.com/cs.php
Code at: http://lerdorf.com/cs.phps
No idea what you are doing on your end to get a different result.
-Rasmus
Navigation:
[Reply to this message]
|