解决方案 »

  1.   

    //发送手机短信函数
    function sendSMS($uid,$key,$hl_phone,$hl_content){
    $url='http://utf8.sms.webchinese.cn/?Uid='.$uid.'&Key='.$key.'&smsMob='.$hl_phone.'&smsText='.$hl_content; 
    if(function_exists('file_get_contents')){
    $file_contents = file_get_contents($url);
    }else
    {
    $ch = curl_init();
    $timeout = 5;
    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $file_contents = curl_exec($ch);
    curl_close($ch);
    }
    return $file_contents;

    //发订单短信息到会员手机
    $uid=$cfg_smsuid;
    $key=$cfg_smskey;
    $hl_phone=$phone;
    $hl_content="您好".$username.",您提交订单号:".$DingDan_NUM.",".$PeiSong.",".$ZhiFu.",总金额".$Yingfu_Total_Price."已配送";
    $res = sendSMS($uid,$key,$hl_phone,$hl_content);