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 正常运行时,我只是通过 PHP 标头刷新浏览器,javascript 重新运行。
但我想在 CLI 模式下做这样的事情。我当前的爬虫脚本需要很长时间才能执行,并且可能超过脚本超时。
然后想再次回调脚本并使其正常工作?
最简单的方法是使用
require($_SERVER['PHP_SELF']);
但是我真的不明白你为什么要这样做......