Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好我正在尝试创建一个应用程序来向人们发送通知短信,我想从数据库中选择他们的姓名和电话号码并使用以下 API 向他们发送短信:
http://api.infobip.com/api/v3/sendsms/plain?user=test&password=test&sender=Friend&SMSText=messagetext&SendDateTime=1d2h5m3s&GSM=38598514674
我是php编程新手
以下是我用来从数据库中选择的代码
在常见的 API 中,它们将提供一个 PHP 文件和一个证书文件(可选),我们可以使用这些文件直接发送 SMS。
粗略的代码如下所示
$sms=new SMSApi(); $sms->senderId("YOUR CUSTOMER ID"); $sms->number="1254578" // Number to send SMS $sms->type=1 // Promotional, transcational etc $sms->send(); // Send SMS
请查看他们的文档以获取更多详细信息
http://www.infobip.com/messaging/app_developers/