1234567891011121314151617 |
- <?php
- use app\admin\model\Admin;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class WorkStatus extends Com{
- public static function run(){
- $work=self::newWorker();
- $work->onWorkerStart=function (WO $worker){
- Timer::add(3,function ()use ($worker){
- file_put_contents(RUNTIME_PATH.'/workerman.status','');
- });
- };
- }
- }
- WorkStatus::run();
|