可能重复:
Stop A Script (without fatal error) After A Certain Amount of Query/Parse Time
如果脚本在PHP中运行超过5秒,是否可以停止脚本?
我不知道我怎么能分辨出它的运行时间。
答案 0 :(得分:8)
使用set_time_limit()
来限制执行时间:
// At the beginning of your script
set_time_limit(5);
另请阅读文档站点上的警告框:
当PHP以安全模式运行时,此功能无效。有 除关闭安全模式或更改时间外,没有其他解决方法 在php.ini中限制。