crontab icon indicating copy to clipboard operation
crontab copied to clipboard

A crontab written in PHP based on workerman

Results 3 crontab issues
Sort by recently updated
recently updated
newest added

``` $crontab_worker->onWorkerStart = function ($crontab_worker) use ($app) { new Crontab('0 0 * * *', $app->boot('/article/sitemap/main'),'sitemap'); new Crontab('*/15 * * * *', $app->boot('/multimedia/migration'),'migration_image'); new Crontab('*/19 * * * *', $app->boot('/article/migration'),'migration_article'); };...

`*`和`*/1`等效处理

是否支持这样写“0-23/1:表示从0点到23点,每隔1小时”