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.
![]() |
|
||||||||||
|
connection_timeoutDescriptionbool connection_timeout ( void )Returns TRUE if script timed out.
See the Connection Handling description in the Features chapter for a complete explanation. See also connection_status(). connection_timeout
jon at dbgurus dot com dot au
24-Jan-2007 02:30
In order to prevent my script timing out (I was processing images which was taking some time) I added this into my loop: |