mobile_delete.php 435 B

123456789101112131415161718
  1. <?php
  2. use app\common\model\MobileId;
  3. use app\service\EsMobileService;
  4. use Workerman\Lib\Timer;
  5. use Workerman\Worker as WO;
  6. class MobileDelete extends Com{
  7. public static function run(){
  8. $work=self::newWorker();
  9. $work->onWorkerStart=function (WO $worker){
  10. Timer::add(3,function ()use ($worker){
  11. EsMobileService::delByMobile(10000);
  12. });
  13. };
  14. }
  15. }
  16. MobileDelete::run();