|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-31 03:44 UTC] mfischer@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 14:00:01 2025 UTC |
It's not a Bug, but crash PHP. Maybe it's proposital way to prevent a type of DoS. Sometimes it's usefull or it's need use a function that call itself. An example is a recursive array routine. <?PHP function crash($foo) { crash($foo); } crash("foo"); ?> What I like to show is: windows crash PHP when this code run. This is expected or the right is show a Fatal Error mensage?