簡訊平台PHP代碼一點通

來源:互聯網
上載者:User

近段時間接觸簡訊平台機會比較多,想想好像客戶方面的簡訊平台就是用PHP做出來的,心痒痒便找了一下資料學習一下,代碼如下:

<?PHP  

$flag = 0; 
        //要post的資料 
$argv = array( 
                 'sn'=>'SDK-BBX-010-XXXXX', 
   'pwd'=>'XXXXXX', 
   'mobile'=>'134338XXXXX', //測試的手機號
                 'content'=>'你好嗎,測試簡訊' 
   );    
//構造要post的字串 
foreach ($argv as $key=>$value) { 
          if ($flag!=0) { 
                         $params .= "&"; 
                         $flag = 1; 
          } 
         $params.= $key."="; $params.= urlencode($value); 
         $flag = 1; 
          } 
         $length = strlen($params); 
                 //建立socket串連 
         $fp = fsockopen("sdk2.entinfo.cn",80,$errno,$errstr,10) or exit($errstr."--->".$errno); 
         //構造post請求的頭 
         $header = "POST /z_send.aspx HTTP/1.1\r\n"; 
         $header .= "Host:sdk2.entinfo.cn\r\n"; 
         $header .= "Referer:/mobile/sendpost.php\r\n"; 
         $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; 
         $header .= "Content-Length: ".$length."\r\n"; 
         $header .= "Connection: Close\r\n\r\n"; 
         //添加post的字串 
         $header .= $params."\r\n"; 
         //發送post的資料 
         fputs($fp,$header); 
         $inheader = 1; 
          while (!feof($fp)) { 
                         $line = fgets($fp,1024); //去除請求包的頭只顯示頁面的返回資料 
                         if ($inheader && ($line == "\n" $line == "\r\n")) { 
                                 $inheader = 0; 
                          } 
                          if ($inheader == 0) { 
                                // echo $line; 
                          } 
          } 
        if($line==1) 
         { 
       echo '簡訊發送成功 請查收 傳回值'.$line ;  
         }else 
         { 
          echo '簡訊發送失敗,請根據傳回值查看相關錯誤問題 傳回值'.$line ; 
         } 
fclose($fp);



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.