|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-08-07 12:25 UTC] zeev at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 01:00:01 2025 UTC |
I guess that it's not a common thing that we are supposed to do with a script language but I think it's important to let you know ... netscape 4.6 gave me "the document contained no data ..." with this script : <html> <body bgcolor="#ffffff" text="#000088"> <?php function nothing($val) { if ($val <=0 ) return(0); nothing($val - 1); } echo "<br>simple function ... "; echo "<br>recursive function ... "; $debut = time(); nothing(8192); $end = time(); echo "<center>Execution time : ".($end - $debut)."</center>"; ?> </body> </html> Note : the script works fine with nothing(8191) or a smaller value. Note2: C++ support a such number of recursive call. Is it important ?! I really dunno ... gregori