123456789101112131415161718 |
- <?php
- use app\common\model\MobileId;
- use app\service\EsMobileService;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class MobileDelete extends Com{
- public static function run(){
- $work=self::newWorker();
- $work->onWorkerStart=function (WO $worker){
- Timer::add(3,function ()use ($worker){
- EsMobileService::delByMobile(10000);
- });
- };
- }
- }
- MobileDelete::run();
|