What 0 20 * * * does
Minute is 0 and hour is 20, pinning the job to 20:00 on a 24-hour clock. The three asterisks mean every day of the month, every month, every day of the week — so it runs once a day, 365 days a year.
Server time vs your time
If your server runs in UTC and you are in New York, 0 20 * * * fires at 15:00 local time in winter and 16:00 in summer — the offset changes twice a year with daylight saving. Select your timezone in the builder above to see the real fire times rather than guessing.
Frequently asked questions
What is the cron expression for 8pm every day?
0 20 * * *, interpreted in the server's timezone.
Will 0 20 * * * run at 8pm in my local time?
Only if the server's timezone matches yours. Standard cron has no timezone field — it uses whatever the host is set to, usually UTC.
Related cron expressions
Browse the full cron expression reference, or build your own expression from scratch.