ID: 19525
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Verified
+Status: Feedback
Bug Type: Output Control
Operating System: Any
PHP Version: 4CVS-2002-09-20
New Comment:
Both Andrei and myself were not be able to reproduce this. We both got
the error message with CVS HEAD>
Perhaps it is related to settings in php.ini, or related to the SAPI?
Can you point us to the php.ini and tell which SAPI you used?
Derick
Previous Comments:
------------------------------------------------------------------------
[2002-09-20 09:12:23] [EMAIL PROTECTED]
Here is a reproducing script. It does not make sense, because it is
ripped out of its XML_Transformer context:
<?php
ob_start('callback');
function callback($buffer) {
ob_start();
eval($buffer);
$result = ob_get_contents();
ob_end_clean();
return $result;
}
?>
echo 'test';
PHP 4.2.3
Fatal error: Cannot use output buffering in output buffering
display handlers
HEAD
Neither output nor error message.
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=19525&edit=1