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通过终端运行文件(我有 CentOS),所以我想知道当我.php使用终端而不是 Apache 运行文件时,执行时间是否有任何限制?
.php
时间限制应该是一样的。在max_execution_time你的php.ini. set_time_limit(90)例如,您可以在您的 php 代码中强制使用它。
max_execution_time
php.ini
set_time_limit(90)
您可以将该值设置为 0:
set_time_limit(0)
这将完全防止超时。不过要小心。超时是有目的的。
您可以在脚本http://php.net/manual/en/function.set-time-limit.php中使用 set_time_limit(n)