I know it is possible to set the maximum execution time in a script using either:
ini_set('max_execution_time', 30);
or
set_time_limit(30);
What can I do to get a variable containing the maximum execution time in seconds?
I know it is possible to set the maximum execution time in a script using either:
ini_set('max_execution_time', 30);
or
set_time_limit(30);
What can I do to get a variable containing the maximum execution time in seconds?