zhengqi/crontab-expression

crontab日期解析器,支持秒级

Installs: 12

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/zhengqi/crontab-expression

2.0.2 2025-03-10 10:37 UTC

This package is auto-updated.

Last update: 2025-10-10 13:30:19 UTC


README

<?php

$expression = '0 0 2 * 10 *';

$isValid = CronExpression::isValidExpression($expression);

$cron = new CronExpression($expression);

$cron->getNextRunDate()->format('Y-m-d H:i:s');