onWorkerStart=function ($conn){ Timer::add(1,function (){ $orders= MobileOrder::waitPay() ->where('type',1) ->where('create_time','<',time()-300) ->whereNotExists('select * from mobile_order_mind where mobile_order.id=mobile_order_mind.mobile_order_id') ->select(); foreach ($orders as $order){ try { $order->mind()->save([]); SmsSend::orderUnPay($order['phone'],$order['no']); }catch (\Exception $e){ self::logError($e); } } }); }; } public static function logname(){ return class_basename(__CLASS__); } } MobileOrderUnPayNotify::run();