I have a shutdown function registered using register_shutdown_function() that takes a long time to complete. Will PHP's max_execution_time cause PHP to terminate this function or will it run until it completes or errors out?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 1 down vote accepted

It will run to completion.

http://us2.php.net/manual/en/function.register-shutdown-function.php#33575

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.