76

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?

T. Zengerink
  • 4,189
  • 5
  • 29
  • 31
  • 12
    It should be noted that `ini_set('max_execution_time', 30);` and `set_time_limit(30);` are not completely synonymous, because `set_time_limit()` "resets" the counter to 0, which `ini_set()` does not. – DaveRandom Dec 19 '11 at 14:03

4 Answers4

158

The converse, using ini_get:

ini_get('max_execution_time'); 

Note: if you check the documentation page for ini_set, you can find ini_get listed prominently on the "See Also" section. That's a very good way to discover functionality built into PHP that you are not already aware of.

Jon
  • 413,451
  • 75
  • 717
  • 787
  • Worth noting here (as detailed in other answers) that when you set the time with either `ini_set` or `set_time_limit()` then it resets the current time back to `0` – William Patton Mar 19 '20 at 13:04
26

There are some inaccurate points in the comments. So to clarify:

  1. set_time_limit(30) is the same as ini_set('max_execution_time', 30);
  2. Both of them reset the counter.
  3. ini_get('max_execution_time') works for both cases - set_time_limit and ini_set.
T. Zengerink
  • 4,189
  • 5
  • 29
  • 31
David
  • 1,918
  • 21
  • 27
24

you can try

$max_time = ini_get("max_execution_time");
echo $max_time;

and you can use this variable the way you want to :)

user151841
  • 16,399
  • 28
  • 105
  • 164
Shades88
  • 7,398
  • 21
  • 80
  • 126
13

try this:

ini_get('max_execution_time')
haynar
  • 5,841
  • 7
  • 32
  • 53