ID: 19525
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Verified
Bug Type: Output Control
Operating System: Any
PHP Version: 4CVS-2002-09-20
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