php 发送sms实例代码_PHP教程

WBOY
Lepaskan: 2016-07-20 11:06:58
asal
1157 orang telah melayarinya



SMS Web Sender Demo


SMS Web Sender DEMO!

if ($action != "submit") {
?>

Any username or password you enter here will not be stored
 in any way (although we're not using SSL either)

Also, as you can see most of these are UK sites, not all
of them will support international numbers!


 
   
     
     
   
   
     
     
   
   
     
     
   
   
     
     
   
   
     
     
   
   
     
     
   
   
     
     
   
   
     
     
   
 
Site
       
     
User
       
     
Password
       
     
Number
       
        (eg. +447123123123)
Message
       
     
Debug
       
     
   
 
    
       
     

} else {

 // contains the site details
 include("sites.php");

 // contains main class
 include("class.sms_web_sender.php");

 if (empty($number) || empty($site) || empty($message)) {
  die("Make sure number, site and message are not empty");
 }

 if (!empty($debug) && $debug == "yes") {
  $debug = true;
 } else {
  $debug = false;
 }

 // signature bit of text that's required by some
 // sites like MTNSMS.com, you can leave as is
 $signature = "*";

 // create instance of sms web sender the one
 // optional argument will determine if
 // debug is turned on or not
 $sms = new sms_web_sender($debug);

 // add accounts
 // 1st argument: username
 // 2nd argument: password
 // 3rd argument: server
 // 4th argument: weight (this is only useful when
 //               shuffling the logins, the higher
 //               the weight, the more likely it'll
 //               be placed near the top of the list)
 //               default if left blank: 1
 $sms->add_login("$user", "$pass", "$site");

 // add Proxy Server details if required
 // I haven't tested this myself, feature of jm_sms
 //$sms->setProxyServer("proxyserver");
 //$sms->setProxyPort(81);
 //$sms->setProxyUser("proxyusername");
 //$sms->setProxyPass("proxypassword");
 //$sms->setProxy(true);

 // passes the number, signature and message in an array
 $result = $sms->send_sms(array("number"=>$number, "signature"=>$signature, "message"=>$message));

 if ($result) {
  echo "

Sent!

";
 } else {
  echo "

Could not send :(

";
  echo "

Go Back

";
 }

}

?>



www.bkjia.comtruehttp://www.bkjia.com/PHPjc/445003.htmlTechArticlehtml head titleSMS Web Sender Demo/title meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /head body bgcolor=#FFFFFF text=#000000 h2SMS Web Sender DEMO!/h2 ?php i...
sumber:php.cn
Kenyataan Laman Web ini
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Tutorial Popular
Lagi>
Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan
Tentang kita Penafian Sitemap
Laman web PHP Cina:Latihan PHP dalam talian kebajikan awam,Bantu pelajar PHP berkembang dengan cepat!