Get max_execution_time in PHP script

后端 未结 4 1267
刺人心
刺人心 2021-02-04 23:28

I know it is possible to set the maximum execution time in a script using either:

ini_set(\'max_execution_time\', 30);

or

set_t         


        
4条回答
  •  清酒与你
    2021-02-04 23:54

    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.

提交回复
热议问题