ID: 32953
Updated by: [EMAIL PROTECTED]
Reported By: [EMAIL PROTECTED]
-Status: Open
+Status: Feedback
Bug Type: Output Control
Operating System: RHEL 3
PHP Version: 4.3.11, 5.0.4
New Comment:
What do you expect to get instead?
ob_end_flush() calls output handler, which in turn calls ob_end_flush()
and so on.
You'll get the same result with this code:
<?php
function f() {
f();
}
f();
?>
Previous Comments:
------------------------------------------------------------------------
[2005-05-05 12:20:54] [EMAIL PROTECTED]
Description:
------------
the bellow generating Segmentation fault on both 4.3.11, 5.0.4
the gdb trace looks like infinit recursive.
Reproduce code:
---------------
<?
ob_start(create_function("","ob_end_flush();"));echo "123";
?>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=32953&edit=1