easyswoole / crontab
easyswoole extension tool library
1.1.2
2025-09-18 19:24 UTC
Requires
- php: >=8.0
- dragonmantank/cron-expression: ^2.2
- easyswoole/component: ^2.0
Requires (Dev)
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();