I posted this problem a week ago, but no one answered so I try again:
Is there a way to disable the call back function set by "ob_start"? I tried: ob_end_flush(); ob_end_clean(); ob_implicit_flush(true);
Nothing seams to work. I can't detect the call back function and I can't prevent it either. The call back function is called no matter what!
Michael
What do you mean with callback function? I simply do it this way: ob_start(); include('modules/'.$file); $content=ob_get_contents(); ob_end_clean();
which puts the contents of that file in $content.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php