①:通過http://www.juhe.cn/docs/api/id/54 申請簡訊API服務
②:在簡訊模板中心,新增一個模板,並通過稽核
一、聚合資料(www.juhe.cn)簡訊API服務介面PHP請求範例原始碼
<?php header('content-type:text/html;charset=utf-8'); class SendCode { private $key; private $tpl_id; public function __construct() { $this->key = 'AppKey'; // 聚合資料後台的AppKey $this->tpl_id = 'tpl_id'; // 申請的簡訊模板ID,根據實際情況修改簡訊模板 } public function send($mobile){ if (empty($mobile)) { $this->show_json(-4,'手機號不能為空'); } $code = mt_rand(100000,999999); $sendUrl = 'http://v.juhe.cn/sms/send'; //簡訊介面的URL $smsConf = array( 'key' => $this->key, //您申請的APPKEY 'mobile' => $mobile, //接受簡訊的使用者手機號碼 'tpl_id' => $this->tpl_id, //您申請的簡訊模板ID,根據實際情況修改 'tpl_value' =>'#code#='.$code.'&#company#=聚合資料' //您設定的模板變數,根據實際情況修改 ); $content = $this->juhecurl($sendUrl,$smsConf, 1); //請求傳送簡訊 if($content){ $result = json_decode($content,true); $error_code = $result['error_code']; if($error_code == 0){ //狀態為0,說明簡訊傳送成功 $data['code'] = $code; $this->show_json(1, $data); }else{ //狀態非0,說明失敗 $msg = $result['reason']; $this->show_json(-3, "簡訊傳送失敗(".$error_code."):".$msg); } }else{ //返回內容異常,以下可根據業務邏輯自行修改 $this->show_json(-3, '請求傳送簡訊失敗'); } } /** * 請求介面返回內容 * @param string $url [請求的URL地址] * @param string $params [請求的引數] * @param int $ipost [是否採用POST形式] * @return string */ public function juhecurl($url,$params=false,$ispost=0){ $httpInfo = array(); $ch = curl_init(); curl_setopt( $ch, CURLOPT_HTTP_VERSION , CURL_HTTP_VERSION_1_1 ); curl_setopt( $ch, CURLOPT_USERAGENT , 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.22 (KHTML, like Gecko) Chrome/25.0.1364.172 Safari/537.22' ); curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT , 30 ); curl_setopt( $ch, CURLOPT_TIMEOUT , 30); curl_setopt( $ch, CURLOPT_RETURNTRANSFER , true ); if( $ispost ) { curl_setopt( $ch , CURLOPT_POST , true ); curl_setopt( $ch , CURLOPT_POSTFIELDS , $params ); curl_setopt( $ch , CURLOPT_URL , $url ); } else { if($params){ curl_setopt( $ch , CURLOPT_URL , $url.'?'.$params ); }else{ curl_setopt( $ch , CURLOPT_URL , $url); } } $response = curl_exec( $ch ); if ($response === FALSE) { return false; } $httpCode = curl_getinfo( $ch , CURLINFO_HTTP_CODE ); $httpInfo = array_merge( $httpInfo , curl_getinfo( $ch ) ); curl_close( $ch ); return $response; } public function show_json($status = 1, $return = NULL) { $ret = array('status' => $status); if (!is_array($return)) { if ($return) { $ret['result']['message'] = $return; } exit(json_encode($ret)); } else { $ret['result'] = $return; } exit(json_encode($ret)); } }
二、呼叫範例
<?php $send = new SendCode(); $send->send(15113993183);
三、成功時返回status為1
以上就是聚合資料簡訊API服務介面PHP請求範例(附原始碼)的詳細內容,更多請關注TW511.COM其它相關文章!