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.
我得到了迭代目录中所有图像并调整它们大小的脚本。 我得到了包含 2000 张图像的目录,这需要一些时间。
我运行脚本,发现它只调整了 40-50 个图像的大小,然后我再次运行它,它调整了 ANOTHER 40-50 个图像的大小,依此类推......
您是否知道为什么会发生这种情况以及如何让脚本运行直到它真正完成?
这只是最大执行时间限制的问题
如果您正在运行一个需要执行未知时间或永远的脚本..您可以使用
set_time_limit(0);
文档: http: //php.net/manual/en/function.set-time-limit.php
在该代码页面上添加:set_time_limit(0);应该运行直到完成。