如何从 PHP 脚本管理和添加 Cron 作业?
我想制作一个自动计划的 PHP 脚本。
实际上我的脚本更新了 20 个系统的哈希键..意味着它必须发送 20 个带有一些数据的 URL。我需要它每分钟发生一次,但我想通过 php 脚本来管理它,而不是手动设置 cron 作业。另外我希望它可以随时轻松暂停和恢复 cron...
有什么解决方案吗!请帮我 !谢谢
- 更多信息:
我使用 Hostgator 的共享平台,我也将很快将其迁移到专用一次!所以请根据它为我提供解决方案。
I want to make a Auto Scheduled Php Script .
actually my script update hash keys of 20 systems .. means it have to send 20 urls with some data . I need it to happen it every minutes but i want to manage it via php script not manually setup cron job . Also i want it to easy to pause and resume the cron at anytime ...
is there any solution ! Please help me ! thanks
- More Info :
I use Shared Platform of Hostgator also i will soon migrate it to dedicated once ! so please provide me solution accourding to it .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在共享主机上可能无法直接从 PHP 更新 crontab。
另一种方法是让 cron 运行充当守护进程的 PHP 脚本。以便 PHP 脚本运行其他 PHP 脚本或根据需要执行操作。
Updating the crontab directly from PHP may not be an option on a shared host.
An alternative approach is to have cron run a PHP script that acts as a daemon. So that PHP script runs other PHP scripts or performs actions as needed.