当另一个 cron 作业完成时如何运行 cron 作业?
如何设置 cron 作业 (cron2.php) 在且仅在 cron 作业 (cron1.php) 成功运行之后运行?
How do I set up a cron job (cron2.php) to run after and only after a cron job (cron1.php) runs successfully?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要执行两个命令,一个接一个,只需使用
;
。例如,您会看到暂停两秒钟,然后执行
ls
。在您的 crontab 中执行相同的操作。如果第二个作业依赖于第一个作业的成功,请使用
&&
表示法(代替;
)。To do two commands, one following the other, just use
;
. For example, you'll see thatwill pause for two seconds and then do an
ls
. Do the same in your crontab.If the second job relies on the first being successful, use the
&&
notation (in place of the;
).如果可行,您可以使用 shell_exec 或包含在第一个 php 文件中来运行第二个文件。如果将其放置在第一个文件的末尾,则仅当脚本成功到达该点时才会执行它,并且您可以使用 php 代码来验证第一部分是否成功完成。
If it's practical you could use shell_exec or include within the first php file to run the second file. If this is placed at the end of the first file, it will only be executed if the script successfully reaches that point, and you can use php code to verify that the first part completed successfully.