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.
我想注意 cookie,如果这个 cookie 存在,请考虑一下。我试过这个:
while (true) { sleep(1); if ($_COOKIE['name']) { doSomethink(); } }
但是这段代码确实使执行“睡眠”。
有没有办法在不停止执行的情况下观看?
如果这是一个浏览器活动,更好的方法可能是setInverval()使用 ajax 调用 php 函数的 javascript。
setInverval()
否则,我建议通过 CRON 运行 PHP 脚本。我知道没有其他方法可以异步运行 PHP,这可能是您想要完成的。