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.
我试图制作一个代码来自动从服务器发送邮件。我希望它在每小时 15 分钟和 30 分钟每次运行一个 php。
Example at 08:15, 08:30, 09:15, 09:30, etc..
谢谢你,丹尼尔!
这个怎么样?
15-30/15 * * * * * php foo.php
显然,替换php foo.php为您要运行的命令。语法指示:分钟 15 到 30,增量为 15。这15-30/15将使您的作业在 xx:15 和 xx:30 每小时运行一次。
php foo.php
15-30/15