Re: Output buffering

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



2009/10/7 Arno Kuhl <akuhl@xxxxxxxxxxxx>:

> According to the manual I shouldn't see anything at all when
> output_buffering is off (or if memory serves me correctly I should see an
> error about "headers already sent" or something). Looking at phpinfo
> confirms the value echoed by the script. Has something changed with output
> buffering?

Use

    echo ob_get_level() . "<br/>";

to find out how many levels of output buffering you are wrapped in.

Whether output buffering is set to start automatically, and whether
output buffering is on right now are two different things:

    ob_end_clean();
    echo ob_get_level() . "<br/>";
    echo ini_get('output_buffering') . "<br/>";

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux