|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 14:00:01 2025 UTC |
Description: ------------ PHP 4.3.7 Apache 2.0.49 Windows XP Deep recursion crashes the Apache process with status = 128. [Sun Jul 18 12:29:08 2004] [notice] Parent: child process exited with status 128 -- Restarting. It seems the error occurs at somehow random recursion levels (it can go from recursion level 100 to 1000). I understand that a stack overflow might occur, but for the sample below a decent implementation should allow very large recursion depths. Reproduce code: --------------- <?php function recurse($count) { echo $count.'<br/>'; if ($count < 10000) recurse(++$count); } recurse(0); die 'No crash'; ?> Expected result: ---------------- 0 1 .. 999 No crash Actual result: -------------- No output (because the server process is killed prematurely).