Reputation: 22936
I have a PHP script that loops forever, checking values and logging them.
How can I get the PHP script to ignore max_execution_time? Do I just set max_execution_time to a huge value?
Upvotes: 0
Views: 1648
Reputation: 76
Setting the value to 0 will turn off the limitation.
When working with PHP, the online manual should/must be your best friend: http://php.net/manual/en/function.set-time-limit.php
Upvotes: 5