wujunxiong 4725452b86 初始版本提交 | há 2 anos atrás | |
---|---|---|
.. | ||
src | há 2 anos atrás | |
tests | há 2 anos atrás | |
.gitignore | há 2 anos atrás | |
LICENSE | há 2 anos atrás | |
README.md | há 2 anos atrás | |
composer.json | há 2 anos atrás |
<?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();