国产成人精品三级麻豆 I koreanbj精品视频一区 I yy6080高清性理论片啪 I 18禁裸体动漫美女无遮挡网站 I 福利国产在线 I 成人在线a I 天天插伊人 I 91av在线不卡 I 午夜影视大全视频在线观看 I 日韩午夜精品 I 91干在线 I 久久尤物视频 I 青青草91在线视频 I 五月婷婷狠狠干 I 成人国产一区二区三区 I 两个男人操一个女人视频 I 久久三 I 久久国产精品99久久久大便 I 老司机亚洲精品影院无码 I 成人91在线 I 日本免费不卡一区在线电影 I 日本三级三级 I а天堂中文最新版在线 I 国产亚洲网站 I 高潮呻吟视频 I 国产精品久久自在自线不 I 天天干干天天 I 久久伊人导航 I 国产高清自拍视频 I 国产成人久久精品 I 可以免费看污视频的网站 I 免费看成人黄色 I 尤物视频在线观看视频 I 青椒成人免费视频 I av综合 日韩

您是否正受到短信簽名報備的困擾?達(dá)信通解決方案讓您最快15分鐘內(nèi)恢復(fù)信息傳遞,馬上 注冊體驗

PHP

PHP代碼示例

//接口類型:達(dá)信通觸發(fā)短信接口,支持發(fā)送驗證碼短信、訂單通知短信等。
 // 賬戶注冊:請通過該地址開通賬戶http://sms.wx96.com/register.html
 // 注意事項:
 //(1)調(diào)試期間,請用默認(rèn)的模板進(jìn)行測試,默認(rèn)模板詳見接口文檔;
 //(2)請使用 用戶名(例如:cf_demo123)及 APIkey來調(diào)用接口,APIkey在會員中心可以獲取;
 //(3)該代碼僅供接入達(dá)信通短信接口參考使用,客戶可根據(jù)實際需要自行編寫;
 
//開啟SESSION
session_start();
 
header("Content-type:text/html; charset=UTF-8");
 
//請求數(shù)據(jù)到短信接口,檢查環(huán)境是否 開啟 curl init。
function Post($curlPost,$url){
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, $url);
        curl_setopt($curl, CURLOPT_HEADER, false);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($curl, CURLOPT_NOBODY, true);
        curl_setopt($curl, CURLOPT_POST, true);
        curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
        $return_str = curl_exec($curl);
        curl_close($curl);
        return $return_str;
}
 
//將 xml數(shù)據(jù)轉(zhuǎn)換為數(shù)組格式。
function xml_to_array($xml){
    $reg = "/<(\w+)[^-->]*>([\\x00-\\xFF]*)<\\/\\1>/";
    if(preg_match_all($reg, $xml, $matches)){
        $count = count($matches[0]);
        for($i = 0; $i < $count; $i++){
        $subxml= $matches[2][$i];
        $key = $matches[1][$i];
            if(preg_match( $reg, $subxml )){
                $arr[$key] = xml_to_array( $subxml );
            }else{
                $arr[$key] = $subxml;
            }
        }
    }
    return $arr;
}
 
//random() 函數(shù)返回隨機(jī)整數(shù)。
function random($length = 6 , $numeric = 0) {
    PHP_VERSION < '4.2.0' && mt_srand((double)microtime() * 1000000);
    if($numeric) {
        $hash = sprintf('%0'.$length.'d', mt_rand(0, pow(10, $length) - 1));
    } else {
        $hash = '';
        $chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ23456789abcdefghjkmnpqrstuvwxyz';
        $max = strlen($chars) - 1;
        for($i = 0; $i < $length; $i++) {
            $hash .= $chars[mt_rand(0, $max)];
        }
    }
    return $hash;
}
//短信接口地址
$target = "http://106.wx96.com/webservice/sms.php?method=Submit";
//獲取手機(jī)號
$mobile = $_POST['mobile'];
//獲取驗證碼
$send_code = $_POST['send_code'];
//生成的隨機(jī)數(shù)
$mobile_code = random(4,1);
if(empty($mobile)){
    exit('手機(jī)號碼不能為空');
}
//防用戶惡意請求
if(empty($_SESSION['send_code']) or $send_code!=$_SESSION['send_code']){
    exit('請求超時,請刷新頁面后重試');
}
 
$post_data = "account=用戶名&password=密碼&mobile=".$mobile."&content=".rawurlencode("您的驗證碼是:".$mobile_code."。請不要把驗證碼泄露給其他人。");
//用戶名是登錄wx96.com賬號名(例如:cf_demo123)
//查看密碼請登錄用戶中心->驗證碼、通知短信->帳戶及簽名設(shè)置->APIKEY
$gets =  xml_to_array(Post($post_data, $target));
if($gets['SubmitResult']['code']==2){
    $_SESSION['mobile'] = $mobile;
    $_SESSION['mobile_code'] = $mobile_code;
}
echo $gets['SubmitResult']['msg'];
      
在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

服務(wù)熱線(工作時間):

4008 808 898

業(yè)務(wù)咨詢(非工作時間):

4008 808 898

售后咨詢(非工作時間):

4008 808 898