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.
为什么我不能在本地主机环境中并行运行两个或多个脚本?他们只是简单地停止而没有任何错误消息。
tcp 连接有连接超时。在没有数据的空闲时间后,连接关闭,因此脚本停止。
php 有额外的 time_limits 以防止高 cpu 使用率。但这个限制与实际秒数没有直接关系,而是与使用 cpu 周期有关。
对于长时间运行的脚本,最好从命令行而不是浏览器运行。
写set_time_limit(0)在你的php页面顶部,然后再试一次
set_time_limit(0)
试试下面的链接:
PHP set_time_limit 限制
PHP set_time_limit 无效
可能对你有帮助。