Woodstock
Woodstock

Reputation: 22936

How to get PHP script to ignore max_execution_time and run forever

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

Answers (1)

sigu
sigu

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

Related Questions