php用不同平台批量發送簡訊的方法
1.首先將需要發送訊息的手機號碼存入redis快取
$redis = new \redis(); $conn = $redis->connect('localhost', 6379); $auth = $redis->auth('*****'); //redis设置了密码,需要认证 $list = Testuser::find()->asarray()->all(); for ($i=0; $i < count($list); $i++) { $redis->lpush('list',$list[$i]['email']); }
將所需發送的手機號碼存入redis快取中
#推薦:《PHP教學》
2.調用簡訊介面發送簡訊
$redis = new \redis(); $conn = $redis->connect('localhost', 6379); $auth = $redis->auth('*****'); $lenth = $redis->llen('list'); for ($i=0; $i < $lenth ; $i++) { $phone = $redis->brpop('list',1,60);//从结尾处弹出一个值,超时时间为60s $phonenumber = $phone[1]; $sendmsg = send($phonenumber); if($sendmsg){ //处理发送成功的逻辑 }else{ //处理发送失败的逻辑 } usleep(500000);//微秒,调用第三方接口,需要注意频率, }
這裡結合php的cli模式,透過函數exec觸發指令。直接後台執行。
以上是php用不同平台大量發簡訊的詳細內容。更多資訊請關注PHP中文網其他相關文章!