This is known issue for a long time.
Sebastian Bergmann wrote:
> Marcus Börger wrote:
>
>>The problem here again is that in ob handlers no ob_xxx() function can
>>be called.
>
*SNIP*
>
> It'd be okay IMHO to prohibit ob_*() calls inside a handler.
>
There are functions like this. i.e. arra
At 18:02 01.09.2002, Sebastian Bergmann wrote:
>Marcus Börger wrote:
> > The problem here again is that in ob handlers no ob_xxx() function can
> > be called.
>
> FYI: I know that I shouldn't do that, but I tried
>
> class Test {
> function Test() {
> ob_start(array($this,
Marcus Börger wrote:
> The problem here again is that in ob handlers no ob_xxx() function can
> be called.
FYI: I know that I shouldn't do that, but I tried
out of curiosity, while trying to get Cache_Lite working with
XML_Transformer.
It'd be okay IMHO to prohibit ob_*() calls in
At 17:10 01.09.2002, Zeev Suraski wrote:
>At 17:51 01/09/2002, Marcus Börger wrote:
>>At 15:25 01.09.2002, Zeev Suraski wrote:
>>>At 16:10 01/09/2002, Marcus Börger wrote:
The problem is that in function
PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool
just_flush TSRMLS_
At 17:51 01/09/2002, Marcus Börger wrote:
>At 15:25 01.09.2002, Zeev Suraski wrote:
>>At 16:10 01/09/2002, Marcus Börger wrote:
>>>The problem is that in function
>>>PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool
>>>just_flush TSRMLS_DC)
>>>
>>>the user function is called wether o
At 15:25 01.09.2002, Zeev Suraski wrote:
>At 16:10 01/09/2002, Marcus Börger wrote:
>>The problem is that in function
>>PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool just_flush
>>TSRMLS_DC)
>>
>>the user function is called wether or not send_buffer is zero. (Zero
>>means flush
>
At 16:10 01/09/2002, Marcus Börger wrote:
>The problem is that in function
>PHPAPI void php_end_ob_buffer(zend_bool send_buffer, zend_bool just_flush
>TSRMLS_DC)
>
>the user function is called wether or not send_buffer is zero. (Zero means
>flush
>here and means the function must not be called,
At 15:06 01.09.2002, Sebastian Bergmann wrote:
>Marcus Börger wrote:
> > Ever tried this in earlier version of PHP? I guess not!
>
> I tested it with PHP 4.2.3-RC1, and it's broken there, too.
>
> I did not claim that you broke this one, Marcus, so why the harsh
> tone?
Because you rev
Marcus Börger wrote:
> Ever tried this in earlier version of PHP? I guess not!
I tested it with PHP 4.2.3-RC1, and it's broken there, too.
I did not claim that you broke this one, Marcus, so why the harsh
tone?
--
Sebastian Bergmann
http://sebastian-bergmann.de/ h
At 10:10 31.08.2002, Sebastian Bergmann wrote:
> Reproducing script:
>
> class Test {
> function Test() {
> ob_start(array($this, 'transform'));
> }
>
> function transform($buffer) {
> ob_end_clean();
> return $buffer;
> }
> }
>
>
10 matches
Mail list logo