* Thus wrote Manuel Vázquez Acosta ([EMAIL PROTECTED]):
> 
> "Marek Kilimajer" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > Use register_shutdown_function()
> 
> register_shutdown_function('shutingdown');
> 
> echo "Running...";
> flush();

> exit();
> ?>
> 
> But the browser gets this:
> Running...
> Fatal error: Maximum execution time of 30 seconds exceeded in
> d:\tests\shutdown.php on line 8

Add before the exit:
set_time_limit(0);

http://php.net/set_time_limit

Curt
-- 
"My PHP key is worn out"

  PHP List stats since 1997: 
          http://zirzow.dyndns.org/html/mlists/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to