|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2005-05-05 12:20 UTC] momo@php.net
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";
?>
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Dec 04 20:00:01 2025 UTC |
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(); ?>