ID: 37408 Updated by: [EMAIL PROTECTED] Reported By: Jared dot Williams1 at ntlworld dot com -Status: Open +Status: Feedback Bug Type: Scripting Engine problem Operating System: Win2000 PHP Version: 5.1.4 Assigned To: helly New Comment:
What's defined for max_execution_time in your php.ini Previous Comments: ------------------------------------------------------------------------ [2006-05-16 19:58:11] mlee at kanhan dot com It IS a bug. I've double-checked the documentation: http://www.php.net/manual/en/features.commandline.php It says the default value of max_execution_time is 0 for the CLI version. ------------------------------------------------------------------------ [2006-05-16 00:25:52] Jared dot Williams1 at ntlworld dot com F:\Temp\CVSProjects\ezcomponents\trunk>php -d max_execution_time=0 -a Interactive mode enabled <?php sleep(4); echo $a;' Fatal error: Maximum execution time of 30 seconds exceeded in F:\Temp\CVSProjects\ezcomponents\trunk\- on line 3 ------------------------------------------------------------------------ [2006-05-16 00:11:51] [EMAIL PROTECTED] Thank you for taking the time to write to us, but this is not a bug. Please double-check the documentation available at http://www.php.net/manual/ and the instructions on how to report a bug at http://bugs.php.net/how-to-report.php To chang execution time limit either use set_time_limit() function or run CLI php with -d max_execution_time=0 flag ------------------------------------------------------------------------ [2006-05-12 02:08:25] mlee at kanhan dot com Sorry the command in my previous comment should be this: C:\temp>php loop.php ------------------------------------------------------------------------ [2006-05-12 02:05:22] mlee at kanhan dot com The bug does not just affect interactive sessions but normal CLI operations as well. Try put the following code in a file: <?php for($i = 0; ; ++$i) { echo $i."\n"; sleep(1); } ?> Then run it at the command prompt: c:\>php loop.php After running for about 60 seconds, the following error occurs: Fatal error: Maximum execution time of 60 seconds exceeded in C:\temp\loop.php on line 6 ------------------------------------------------------------------------ The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online at http://bugs.php.net/37408 -- Edit this bug report at http://bugs.php.net/?id=37408&edit=1