Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP - Cron Job Run At Specific Date & time

Tags:

php

cron

crontab

How to identify that cron job will run on specific Date&Time with help of cron expression Only

like image 357
Harshad Vichare Avatar asked Mar 20 '13 08:03

Harshad Vichare


1 Answers

*     *     *   *    *        command to be executed
-     -     -   -    -
|     |     |   |    |
|     |     |   |    +----- day of week (0 - 6) (Sunday=0)
|     |     |   +------- month (1 - 12)
|     |     +--------- day of        month (1 - 31)
|     +----------- hour (0 - 23)
+------------- min (0 - 59)

Replace the * with the values you need.

like image 55
Eernie Avatar answered Oct 11 '22 16:10

Eernie