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 持有一个条件,如果条件为真,它会使用函数 exec() 执行一些程序,之后,(因为它是自动化的)网页应该自行刷新继续查看条件,如果条件为假,则应在等待两秒后刷新。
我正在用 header("refresh:2;url=_url_here"); 但如果函数 exec() 持续时间超过两秒,它就没有用了......
预先感谢您的帮助。
类似的事情exec ("command > /dev/null 2>&1 & echo $!", $data); 一旦完成,检查 pid id,如果 id 存在,那么剩下的就是家庭作业。但最好的方法是让 cron 更新一个文件,您可以检查该文件是否有任何更新。
exec ("command > /dev/null 2>&1 & echo $!", $data);