Multiple choice technology web 2.0

How to set Maximum execution time of each script in PHP?

  1. max_exec_time

  2. execution_time

  3. max_execution_time

  4. none of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

PHP uses max_execution_time in php.ini to set the maximum time a script can run. This prevents runaway scripts from consuming server resources. Option C is the correct configuration directive as documented in PHP's runtime configuration.