我想增加php 的 最大执行时间php.ini,而不是通过更改文件。
php.ini
我想从我的 php 文件中增加它。
这可能吗?
ini_set(‘max_execution_time’, ‘300’); //300 seconds = 5 minutes ini_set(‘max_execution_time’, ‘0’); // for infinite time of execution
把它放在你的 PHP 脚本的顶部,让你的脚本松散!
取自使用 ini_set() 增加 PHP 脚本执行时间限制