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 ずつ増分します。これにより、ジョブは 1 時間ごとに xx:15 と xx:30 に実行されます。
php foo.php
15-30/15