Get max_execution_time in PHP script

后端 未结 4 1293
刺人心
刺人心 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条回答
  •  旧时难觅i
    2021-02-04 23:30

    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.

提交回复
热议问题