Return to Snippet

Revision: 549
at July 18, 2006 12:04 by nicolaspar


Initial Code
#reset script execution time limit (as set in MAX_EXECUTION_TIME ini directive)...
#requires SAFE MODE to be OFF!
#Call: setTimeLimit(60);

function setTimeLimit( $time = 0 ){
  if( ini_get( 'safe_mode' ) != 1 ) {
    set_time_limit( $time );
  }
}

Initial URL


Initial Description


Initial Title
Php setTimeLimit

Initial Tags


Initial Language
PHP