php 中的调度作业
我正在编写一个 facebook 应用程序,用户授予该程序offline_access 权限。 我需要收集有关他们的信息,例如每天两次,上午 12 点和下午。
我应该如何在 PHP 中执行此操作? 我应该在 linux/windows 中使用 cron 作业还是什么?
there is a facebook app which I'm writing , Users grant offline_access to the program .
I need to collect information about them for example twice a day at 12 am and pm .
how should I do this in PHP?
should I use cron jobs in linux/windows or what?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。如果可以的话,一定要使用它们。还有其他解决方案,例如让第一个用户在 xx 小时后访问您的网站,运行相同的脚本,但这些解决方案会很麻烦且不太理想。
Cron 是正确的选择。
Yep. If you can, do use them. There would be other solutions, like having the first user hitting your site after xx hours run those same scripts but the solutions would be cumbersome and less-than-ideal.
Cron is the way to go.
如果您预见需要运行各种其他 crons,另一种选择是使用 Zend Server 作业队列 系统。
Another alternative, if you foresee the need to run a variety of other crons, would be to use the Zend Server Job Queue system.