1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- use app\common\model\MobileOrder;
- use app\common\service\SmsSend;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class MobileOrderUnPayNotify extends Com{
- public static function run()
- {
- $work=self::newWorker();
- $work->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();
|