您好,登錄后才能下訂單哦!
織夢短信驗證碼功能的實現(xiàn)方法?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
織夢短信驗證碼功能怎么實現(xiàn)?
現(xiàn)在大部分網(wǎng)站都需要用短信驗證碼,因為織夢官方?jīng)]有短信驗證碼插件,所以寫了幾個短信驗證碼插件,一個使用的是阿里云的短信驗證碼接口,一個使用的是阿里大于的短信驗證碼接口,一個使用的是阿里通信短信驗證碼接口,另外一個使用的是云之訊的短信接口。
包含2個織夢短信驗證碼接口。
織夢會員短信注冊需要修改的地方:
1、需要創(chuàng)建一個表來對驗證碼進行記錄,防止多次發(fā)送,這里創(chuàng)建了一個phonecode表。
2、member/templets/reg-new.htm (注冊模版添加元素)
3、member/templets/js/reg_new.js (驗證手機號)
4、member/index_do.php (根據(jù)后臺設(shè)置,判斷是否發(fā)送注冊驗證碼)
5、member/reg_new.php (驗證、記錄)
a.使用阿里云短信接口接入:
需要在member/index_do.php對應(yīng)的位置插入阿里云短信接口代碼。特別需要注意的是,阿里云短信官方demo文檔是大神寫的,所以普通人用起來會報命名空間錯誤,這個需要自己注意。另外需要更新下短息模板,現(xiàn)在阿里短信模板審核非常嚴格,不允許有其他變量,之前并沒有這個問題。所以,審核不過的時候,需要減少變量。(目前已經(jīng)無法開通阿里云短信接口,新開通的是阿里通信接口,不能使用這段代碼,只適合很久之前就開通過阿里云短信的人)
function getrandchar($length){ $str = null; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $code = getrandchar(5); require_once(DEDEINC.'/aliyun-php-sdk-core/Config.php'); use Sms\Request\V20160927 as Sms; $iClientProfile = DefaultProfile::getProfile("cn-shenzhen", "your accessKey", "your accessSecret"); //登錄阿里云查看: "your accessKey", "your accessSecret" $client = new DefaultAcsClient($iClientProfile); $request = new Sms\SingleSendSmsRequest(); $request->setSignName("簽名");/*簽名名稱*/ $request->setTemplateCode("SMS_1111");/*模板code*/ $request->setRecNum($phone);/*目標手機號*/ $request->setParamString("{\"code\":\"$code\",\"tel\":\"電話號碼\"}");/*模板變量,請確保跟審核過的短信模版變量一致,數(shù)字一定要轉(zhuǎn)換為字符串*/ try { $response = $client->getAcsResponse($request); print_r($response); } catch (ClientException $e) { print_r($e->getErrorCode()); print_r($e->getErrorMessage()); } catch (ServerException $e) { print_r($e->getErrorCode()); print_r($e->getErrorMessage()); } $inquery = " INSERT INTO `dede_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請注意查收!','-1'); exit(); } exit();
附上阿里云短信模版:驗證碼:${code}。您正在注冊,如非您本人操作,請忽略此條短信。如有疑問請與我們聯(lián)系! 電話:${tel}
b.使用阿里大魚的短信接口接入:
同樣的需要在member/index_do.php對應(yīng)的位置插入以下代碼。
function getrandchar($length){ $str = null; //$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $code = getrandchar(5); require_once(DEDEINC.'/alidayu-php-sdk/TopSdk.php'); $client = new TopClient; $client ->appkey = '111111' ; //登錄阿里大于查看appkey。 $client ->secretKey = 'aaaaaaaaaaaaaa' ; //登錄阿里大于查看secret。 $req = new AlibabaAliqinFcSmsNumSendRequest; $req ->setExtend( "" ); $req ->setSmsType( "normal" ); $req ->setSmsFreeSignName( "城子居" ); /*簽名名稱*/ $req ->setSmsParam( "{\"code\":\"$code\",\"name\":\"注冊\"}" ); /*模板變量,請確保跟審核過的短信模版變量一致,數(shù)字一定要轉(zhuǎn)換為字符串*/ $req ->setRecNum($phone);/*目標手機號*/ $req ->setSmsTemplateCode( "SMS_1111111" );//登錄阿里大于查看/*模板ID編號*/ $resp = $client ->execute( $req ); $inquery = " INSERT INTO `imm_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請注意查收!','-1'); exit(); } exit();
c.使用最新的阿里通信短信接口接入:
function getrandchar($length){ $str = null; //$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz"; $strPol = "0123456789"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } $number = getrandchar(4); require_once(DEDEINC.'/aliyun-php-sdk-core/Config.php'); require_once(DEDEINC.'/Dysmsapi/Request/V20170525/SendSmsRequest.php'); require_once(DEDEINC.'/Dysmsapi/Request/V20170525/QuerySendDetailsRequest.php'); function sendSms() { global $phone, $number; //此處需要替換成自己的AK信息 $accessKeyId = "yourAccessKeyId"; $accessKeySecret = "yourAccessKeySecret"; //短信API產(chǎn)品名 $product = "Dysmsapi"; //短信API產(chǎn)品域名 $domain = "dysmsapi.aliyuncs.com"; //暫時不支持多Region $region = "cn-beijing"; //初始化訪問的acsCleint $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret); DefaultProfile::addEndpoint("cn-beijing", "cn-beijing", $product, $domain); $acsClient= new DefaultAcsClient($profile); $request = new Dysmsapi\Request\V20170525\SendSmsRequest; //必填-短信接收號碼 $request->setPhoneNumbers($phone); //必填-短信簽名 $request->setSignName("99商鋪網(wǎng)"); //必填-短信模板Code $request->setTemplateCode("SMS_74725029"); //選填-假如模板中存在變量需要替換則為必填(JSON格式) $request->setTemplateParam("{\"number\":\"$number\"}"); //選填-發(fā)送短信流水號 $request->setOutId("1234"); //發(fā)起訪問請求 $acsResponse = $acsClient->getAcsResponse($request); } sendSms(); $inquery = " INSERT INTO `imm_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$phone','$number','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ echo "發(fā)送成功,請注意查收!"; exit(); } exit();
到這里阿里系的3個短信接口就全都在這里了,對應(yīng)的SDK需要在阿里云官方查找下載。
d.使用云之訊短信接口接入:
同樣的需要在member/index_do.php對應(yīng)的位置插入云之訊短信接口代碼。
function getrandchar($length){ $str = null; $strPol = "0123456789abcdefghijklmnopqrstuvwxyz"; $max = strlen($strPol)-1; for($i=0;$i<$length;$i++){ $str.=$strPol[rand(0,$max)]; } return $str; } require_once(DEDEINC.'/ucpaas.class.php'); $options['accountsid']=''; //對應(yīng)ucpaas.com用戶ID $options['token']=''; //對應(yīng)ucpaas.com里面的用戶token $ucpass = new Ucpaas($options); $appId = ""; //對應(yīng)ucpaas.com里面的項目ID $to = $phone; $templateId = ""; //對應(yīng)ucpaas.com里面的短信模版ID $code = getrandchar(5); $param= $code.',短信模版參數(shù)2'.',短信模版參數(shù)3'; // $code為生成的驗證碼,短信模版參數(shù)2,短信模版參數(shù)3,參數(shù)之間用英文逗號間隔。 $ucpass->templateSMS($appId,$to,$templateId,$param); $inquery = " INSERT INTO `dede_phonecode` (`ip`,`phone`,`phonecode`,`used`,`sendtime`) VALUES ( '$ip','$to','$code','1','$nowtime'); "; $rs = $dsql->ExecuteNoneQuery2($inquery); if( $rs = 1 ){ ShowMsg('發(fā)送成功,請注意查收!','-1'); exit(); } exit();
感謝各位的閱讀!看完上述內(nèi)容,你們對織夢短信驗證碼功能的實現(xiàn)方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。