国产精品成人爽a毛片一区二区,国产日韩精品久久,丰满人妻中伦妇伦精品久久,中文字幕在线资源网,国产草草视频,日本中文字幕精品一区二区三区,亚洲欧美另类视频,国产乱子伦精品免费视频,小骚逼骚水直流

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

PHP

PHP代碼示例

//接口類型:達(dá)信通營(yíng)銷短信接口,支持發(fā)送會(huì)員營(yíng)銷短信。
//賬戶注冊(cè):請(qǐng)通過該地址開通賬戶http://sms.wx96.com/register.html
//注意事項(xiàng):
//(1)調(diào)試期間,請(qǐng)用默認(rèn)的模板進(jìn)行測(cè)試,默認(rèn)模板詳見接口文檔;
//(2)請(qǐng)使用 用戶名(例如:cf_demo123)及 APIkey來調(diào)用接口,APIkey在會(huì)員中心可以獲??;
//(3)該代碼僅供接入達(dá)信通短信接口參考使用,客戶可根據(jù)實(shí)際需要自行編寫;
 
header("Content-type:text/html; charset=UTF-8");
 
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;
}
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;
}
 
$target = "http://api.yx.wx96.com/webservice/sms.php?method=Submit";
$mobile = '136xxxxxxxx';//手機(jī)號(hào)碼,多個(gè)號(hào)碼請(qǐng)用,隔開
$post_data = "account=用戶名&password=密碼&mobile=".$mobile."&content=".rawurlencode("尊敬的會(huì)員,您好,夏季新品已上市,請(qǐng)關(guān)注。退訂回TD【達(dá)信通】");
//用戶名是登錄wx96.com賬號(hào)名(例如:cf_demo123)
//查看密碼請(qǐng)登錄用戶中心->短信營(yíng)銷->帳戶參數(shù)設(shè)置->APIKEY
$gets =  xml_to_array(Post($post_data, $target));
if($gets['SubmitResult']['code']==2){
    echo '提交成功';
}



在線咨詢
電話咨詢

服務(wù)熱線:

4008 808 898

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

4008 808 898

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

4008 808 898

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

4008 808 898