ID:               36383
 Updated by:       [EMAIL PROTECTED]
 Reported By:      david at acz dot org
-Status:           Open
+Status:           Feedback
 Bug Type:         Output Control
 Operating System: Linux
 PHP Version:      5.1.2
 New Comment:

Please try using this CVS snapshot:

  http://snaps.php.net/php5.1-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5.1-win32-latest.zip




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

[2006-02-13 17:09:57] david at acz dot org

Description:
------------
The documentation for ob_implicit_flush says that

"Turning implicit flushing on will disable output buffering, the output
buffers current output will be sent as if ob_end_flush() had been
called."

This is not the case.

If this is indeed the correct behavior, please update the documentation
to reflect that and add an example such as the following:

    ob_implicit_flush(true);
    while (@ob_end_flush());


Reproduce code:
---------------
    ob_start();
    ob_implicit_flush(true);
    var_dump(ob_end_flush());


Expected result:
----------------
bool(false)

Actual result:
--------------
bool(true)


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


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

Reply via email to