16

I have few doubts about maximum execution time set in php.ini.

Assuming max_execution_time is 3 minutes, consider the following cases:

  1. I have a process which will end in 2 minutes.

    But it's in a loop and it should work 5 times. So it become 10 minutes.

    Will the script run properly without showing error for timeout? Why?

  2. PHP function just prints the data and it will take only 2 minutes.

    But the query execution is taking 5 minutes.

    Will the script run without error? Why?

  3. My single php process itself take 5 minutes.

    But am calling the script from command line.

    Will it work properly? Why?

  4. How are memory allowed and execution time related?

    If execution time for a script is very high

    But it returns small amount of data

    Will it affect memory or not? Why?

I want to learn what is happening internally, that is why am asking these. I don't want to just increase time limit and memory limit.

Abhijit
  • 105
  • 2
  • 14
zod
  • 12,092
  • 24
  • 70
  • 106

1 Answers1

35

The rules on max_execution_time are relatively simple.

  • Execution time starts to count when the file is interpreted. Time needed before to prepare the request, prepare uploaded files, the web server doing its thing etc. does not count towards the execution time.

  • The execution time is the total time the script runs, including database queries, regardless whether it's running in loops or not. So in the first and second case, the script will terminate with a timeout error because that's the defined behaviour of max_execution_time.

  • External system calls using exec() and such do not count towards the execution time except on Windows. (Source) That means that you could run a external program that takes longer than max_execution_time.

  • When called from the command line, max_execution_time defaults to 0. (Source) So in the third case, your script should run without errors.

  • Execution time and memory usage have nothing to do with each other. A script can run for hours without reaching the memory limit. If it does, then often due to a loop where variables are not unset, and previously reserved memory not freed properly.

Pekka
  • 442,112
  • 142
  • 972
  • 1,088
  • 2
    This is partially false regarding databases requests, from my personnal tests and [this answer](http://stackoverflow.com/a/10027320/1408100) and [this comment](http://php.net/manual/fr/function.set-time-limit.php#115057) – Laurent W. Feb 18 '16 at 11:16