|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2006-01-19 04:10 UTC] brian at blueo2 dot com
  [2006-01-19 07:27 UTC] brian at blueo2 dot com
  [2006-01-19 08:10 UTC] sniper@php.net
  [2006-01-19 22:51 UTC] brian at blueo2 dot com
  [2006-01-19 22:54 UTC] tony2001@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 11:00:01 2025 UTC | 
Description: ------------ 1) Loading several URLS that are running fread operations and displaying the binary output to the browser 2) While those URLs are still processing (using a Flash app), redirect through a <a href> link to another PHP pahe 3) Data is presented before the HTTP/1.1 response header from a previous request. Reproduce code: --------------- <?php $fp = fopen('/dev/zero', 'ro'); while ($d = fread($fp, 1024)) { echo $d; flush(); } ?> Expected result: ---------------- Not getting the results from previous requests before HTTP headers. Actual result: -------------- Data from previous request before HTTP/1.1 200 OK and additional headers.