Re: [PHP] Multiple callback_outputs for ob_start

2005-12-08 Thread Jochem Maas
Chris Shiflett wrote: Mathijs wrote: How can i add more callback_outputs to ob_start? I want to have both: ob_start('switchContent'); and: ob_start('ob_gzhandler'); I don't think you can, but you could have a single function that calls both, then specify that function in ob_start(). I

[PHP] Multiple callback_outputs for ob_start

2005-12-05 Thread Mathijs
Hello ppl, I Have a question about ob_start(). How can i add more callback_outputs to ob_start? I want to have both: ob_start('switchContent'); and: ob_start('ob_gzhandler'); How can i do that? Thx in advanced. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Multiple callback_outputs for ob_start

2005-12-05 Thread Chris Shiflett
Mathijs wrote: How can i add more callback_outputs to ob_start? I want to have both: ob_start('switchContent'); and: ob_start('ob_gzhandler'); I don't think you can, but you could have a single function that calls both, then specify that function in ob_start(). Chris -- Chris Shiflett