|
connection_timeout
Check if the script timed out
(PHP 4 <= 4.0.4)
Related Examples ( Source code ) » connection_timeout Examples ( Source code ) » E-mail address validation class Code Examples / Notes » connection_timeoutjon
In order to prevent my script timing out (I was processing images which was taking some time) I added this into my loop: set_time_limit(25); This resets the time limit - in this example giving it another 25 seconds to complete the task. |