当另一个 cron 作业完成时如何运行 cron 作业?

发布于 2024-11-18 01:41:21 字数 66 浏览 2 评论 0原文

如何设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧情勿念 2024-11-25 01:41:21

要执行两个命令,一个接一个,只需使用 ;。例如,您会看到

sleep 2; ls

暂停两秒钟,然后执行 ls。在您的 crontab 中执行相同的操作。

如果第二个作业依赖于第一个作业的成功,请使用 && 表示法(代替 ;)。

To do two commands, one following the other, just use ;. For example, you'll see that

sleep 2; ls

will 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 ;).

聚集的泪 2024-11-25 01:41:21

如果可行,您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文