https://github.com/phwoolcon/cron
https://github.com/phwoolcon/cron
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phwoolcon/cron
- Owner: phwoolcon
- Created: 2019-07-17T08:18:19.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-17T08:18:37.000Z (almost 7 years ago)
- Last Synced: 2025-01-11T13:50:55.814Z (over 1 year ago)
- Language: PHP
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cronjob 管理包
## 使用说明
请在使用的项目中添加配置文件 cron.php , 内容格式如下:
```php
[ // 名称, 必须唯一
'expression' => '* * * * *', // cron 的执行规则
'class' => 'Common\Library\QueueHelper', // 执行的类名
'method' => 'processUntreatedQueue' // 执行的方法
],
'update_currency' => [
'expression' => '0 * * * *',
'class' => 'Common\Library\Currency',
'method' => 'updateCurrency',
],
];
```