|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-12 09:34 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 01 16:00:02 2025 UTC |
It is quite easy to crash the PHP interpreter with infinite recursion. While this is a user error, the interpreter should not crash. There should be some sort of internal checking to assure that too many function calls cannot cause a crash. <? foo(); function foo() { foo(); } ?> [Tue Feb 12 07:09:45 2002] [notice] child pid 4079 exit signal Segmentation fault (11)