status.php 413 B

1234567891011121314151617
  1. <?php
  2. use app\admin\model\Admin;
  3. use Workerman\Lib\Timer;
  4. use Workerman\Worker as WO;
  5. class WorkStatus extends Com{
  6. public static function run(){
  7. $work=self::newWorker();
  8. $work->onWorkerStart=function (WO $worker){
  9. Timer::add(3,function ()use ($worker){
  10. file_put_contents(RUNTIME_PATH.'/workerman.status','');
  11. });
  12. };
  13. }
  14. }
  15. WorkStatus::run();