Re: [PHP-DEV] ob_start() and objects

2002-08-25 Thread Sebastian Bergmann
Marcus Boerger wrote: > To have ob_start() working again i first allowed > array(object,method). Thanks, XML_Transformer works again with HEAD. -- Sebastian Bergmann http://sebastian-bergmann.de/ http://phpOpenTracker.de/ Did I help you? Consider a gift: http://wishlist

Re: [PHP-DEV] ob_start() and objects

2002-08-25 Thread Zeev Suraski
At 16:25 25/08/2002, Marcus Boerger wrote: >To have ob_start() working again i first allowed >array(object,method). > >In addition to that i allowed single objects to be passed >which results in calling __output_handler() method of >that object. Why? Output handling doesn't appear to be somethin

Re: [PHP-DEV] ob_start() and objects

2002-08-25 Thread derick
On Sun, 25 Aug 2002, Markus Fischer wrote: > On Sun, Aug 25, 2002 at 03:25:25PM +0200, Marcus Boerger wrote : > > To have ob_start() working again i first allowed > > array(object,method). > > > > In addition to that i allowed single objects to be passed > > which results in calling __output_ha

Re: [PHP-DEV] ob_start() and objects

2002-08-25 Thread Markus Fischer
On Sun, Aug 25, 2002 at 03:25:25PM +0200, Marcus Boerger wrote : > To have ob_start() working again i first allowed > array(object,method). > > In addition to that i allowed single objects to be passed > which results in calling __output_handler() method of As there really a valid reason to

Re: [PHP-DEV] ob_start() and objects

2002-08-25 Thread Marcus Börger
At 15:25 25.08.2002, Marcus Boerger wrote: >To have ob_start() working again i first allowed >array(object,method). > >In addition to that i allowed single objects to be passed >which results in calling __output_handler() method of >that object. > >You can now use: >ob_start(string) >ob_start(obje

[PHP-DEV] ob_start() and objects

2002-08-25 Thread Marcus Boerger
To have ob_start() working again i first allowed array(object,method). In addition to that i allowed single objects to be passed which results in calling __output_handler() method of that object. You can now use: ob_start(string) ob_start(object) ob_start(array(object,method)) ob_start(array(mi