Tool Hub

Cron 解析

将 Cron 表达式翻译为自然语言和下次执行时间

cron 是在服务器上按指定时间自动执行任务的标准调度表示法 (例如备份脚本、报表发送、缓存清理)。将 5 字段 (分·时·日·月·星期) 表达式解析为自然语言和下次运行时间。

min (0-59) · hour (0-23) · dom (1-31) · month (1-12) · dow (0-7)

调度

09:xx, minute 0, weekday 1-5

Next 5 runs (local time)
Jun 25, 2026, 9:00 AM
Jun 26, 2026, 9:00 AM
Jun 29, 2026, 9:00 AM
Jun 30, 2026, 9:00 AM
Jul 1, 2026, 9:00 AM

另请参见: Cron Builder

使用方法

  1. Type a five-field cron expression (minute, hour, day-of-month, month, day-of-week).
  2. The tool translates each field into a plain-English description of the schedule.
  3. A preview lists the next N run times so you can confirm the timing is what you expect.
  4. Adjust the fields and the explanation and run times update immediately.

示例

  • The expression 0 9 * * 1-5 is explained as "At 09:00, Monday through Friday" and the next runs list weekday mornings only.
  • The expression */15 * * * * is read as "Every 15 minutes" and shows the next fire times 15 minutes apart.

生产环境使用前请验证输出。无担保 — 参见 条款.