PHP PHP示例SMS代码示例 - 消息传递API
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP示例SMS代码示例 - 消息传递API相关的知识,希望对你有一定的参考价值。
//PHP SMS API integration code
//Your application url
$ApiUrl ="ApiUrl";)
//Your User Id
$user ="user";
//Your password
$pass ="****";
//Multiple mobiles numbers separated by comma
$mno = "9999999";
//Sender ID,While using route4 sender id should be 6 characters long.
$sid = "102234";
//Your message to send, Add URL encoding here.
$text = "Test message";
// Message Type (1,2,3,4) 1- English,2-Unicode,3- Special Character,4-Arabic
$type = "type";
//Prepare parameter string
$url = "$ApiUrl?user=$user&pass=$pass&sid=$sid&mno=$mno&text=$text&type=$type";
//prepare connection
$ch = curl_init($url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,false);
//reading response
$body = curl_exec($ch);
//finally close connection
curl_close($ch);
//print response
echo $body;
以上是关于PHP PHP示例SMS代码示例 - 消息传递API的主要内容,如果未能解决你的问题,请参考以下文章
html 带有SMS选项的PHP SMTP电子邮件示例
企业信使短信接口API代码示例
使用 PHP 的 Google 云消息传递 (GCM)
发送带有 php 链接的短信
php 使用lookup.php,此示例代码检测国家/地区代码并向不同国家/地区显示不同的消息。
Telegram php示例发送消息[关闭]