In PHP, max_execution_time affects the shutdown functions that are executed through a register_shutdown_function () call?

I have a stop function registered with register_shutdown_function(), which takes a long time to complete. Will PHP max_execution_timeforce PHP to terminate this function, or will it execute until it completes or an error is executed?

+5
source share

All Articles