|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-03 23:13 UTC] yohgaki@php.net
[2002-05-06 17:53 UTC] bob at mroczka dot com
[2002-09-30 22:09 UTC] yohgaki@php.net
[2002-10-19 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 02:00:02 2025 UTC |
i have the following code where ... represents some echo statements but does not include any ob_xxx calls. ob_start("func"); ... ob_end_clean(); and func is defined as: function func ($buf) { error_log("got here",0); return $buf; } when this code runs i get "got here" in my error log. i am expecting the ob_end_clean call to turn off output buffering which includes not calling the callback I registered. i am using 4.2.0rc2 currently.