Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 在一定数量的查询/解析时间后停止脚本(没有致命错误)
如果脚本在 PHP 中运行超过 5 秒,是否可以停止脚本?
我不知道我怎么能知道它运行了多长时间。
用于set_time_limit()限制执行时间:
set_time_limit()
// At the beginning of your script set_time_limit(5);
另请阅读文档站点上的警告框:
当 PHP 在安全模式下运行时,此功能无效。除了关闭安全模式或更改 php.ini 中的时间限制之外,没有其他解决方法。