Search code examples
phpcroncron-task

Setting up cron at specific time


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,


Solution

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

    Check Here