phpgt/cron
最新稳定版本:v1.0.4
Composer 安装命令:
composer require phpgt/cron
包简介
Run scripts or static functions at regular intervals.
README 文档
README
Define background jobs in standard crontab format and the Cron Runner will execute them when they are due. Jobs can be either normal scripts, or calls to static functions with automatic autoloading taken care of.
Example usage
crontab file within your project directory:
00 * * * * ExampleClass::hourlyTask()
0 22 * * 1-5 YourApp\Accounts\Daily::nightRoutine("you can pass properties too!")
# This is a comment. The above job will run at 10pm Mon-Fri.
*/10 * * * * ExampleClass::runEveryTenMinutes
Start the Runner: vendor/bin/cron.
If you're using WebEngine, the Cron Runner is automatically started for you by running gt run.
统计信息
- 总下载量: 3k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2018-11-11