-1

Even though this is simple, i just want to make sure. How do you run a cron schedule every 15minutes from 12pm to 12am

is it:

*/15 12-00 * * * php mycommand.php
or 
*/15 12-24 * * * php mycommand.php

Thanks,

user2720708
  • 455
  • 2
  • 8
  • 19

1 Answers1

1

Both are actually valid I believe. Though 12-00 looks more accurate as far as I'm concerned.

Check Here

Patrick Eaton
  • 706
  • 3
  • 11