|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2005-05-21 19:17 UTC] tony2001@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jan 01 10:00:01 2026 UTC |
Description: ------------ Segfault of the httpd server Reproduce code: --------------- <?php test(1); echo 'you should never see this'; function test($level) { echo $level . '<br>'; flush(); test($level+1); } ?> Expected result: ---------------- Fatal error : Nesting level too deep - recursive dependency? Actual result: -------------- Going up to ~21000 and then just stopping to print. This is because it segfaulted.