easyswoole/crontab
最新稳定版本:1.1.2
Composer 安装命令:
composer require easyswoole/crontab
包简介
easyswoole extension tool library
README 文档
README
Script Test
<?php use EasySwoole\Crontab\Crontab; use EasySwoole\Crontab\Tests\Jobs\JobPerMin; require_once 'vendor/autoload.php'; $http = new Swoole\Http\Server('0.0.0.0', 9501); $crontab = new Crontab(); $crontab->register(new JobPerMin()); $crontab->attachToServer($http); $http->on('request', function ($request, $response) use ($crontab) { $ret = $crontab->rightNow('JobPerMin'); $response->header('Content-Type', 'text/plain'); $response->end('Hello World ' . $ret); }); $http->start();
统计信息
- 总下载量: 34.92k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2021-06-15