ID:               36383
 User updated by:  david at acz dot org
 Reported By:      david at acz dot org
-Status:           Feedback
+Status:           Open
 Bug Type:         Output Control
 Operating System: Linux
-PHP Version:      5.1.2
+PHP Version:      5.1-200602151530
 New Comment:

Same thing:

php5.1-200602151530$ sapi/cgi/php -q
<?
    ob_start();
    ob_implicit_flush(true);
    var_dump(ob_end_flush());
?>
bool(true)

Another test:

php5.1-200602151530$ sapi/cgi/php -q
<?
    ob_start();
    echo "hello\n";
    ob_implicit_flush(true);
    echo "bye\n";
    ob_end_clean();
?>
(no output)

The ob_implicit_flush() function is not disabling output buffering or
sending the current output as the documentation says it should.


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

[2006-02-13 19:09:07] [EMAIL PROTECTED]

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



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

[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