ID:               42473
 Updated by:       [EMAIL PROTECTED]
 Reported By:      ce at netage dot bg
-Status:           Open
+Status:           Bogus
 Bug Type:         Output Control
 Operating System: linux
 PHP Version:      5.2.4RC3
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

>From manual: 

"ob_get_clean() essentially executes both ob_get_contents() and
ob_end_clean()."


Previous Comments:
------------------------------------------------------------------------

[2007-08-29 17:15:33] ce at netage dot bg

Description:
------------
it is actually a duplicate problem with 40429, but since you have
closed the bug I cannot reopen it, but it is still present with all
versions including the new 5.2.4RC3
when open through a browser, not a cli!


Reproduce code:
---------------
<?php


ob_start();

$fp = fopen('php://output', 'w');
fwrite($fp, 'aaaaaaa');
fclose($fp);


$content = ob_get_clean();

header('Content-type: text/html');

echo $content;


Expected result:
----------------
aaaaaaa

Actual result:
--------------
Warning: Cannot modify header information - headers already sent in
/var/www/test.php on line 13
aaaaaaa


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=42473&edit=1

Reply via email to