2024年09月11日 建站教程
如何使用PHP调用云片网短信接口实现批量短信发送,下面web建站小编给大家简单介绍一下具体实现语法!
1、申请云片网账号
申请云片网账号,登录云片网开发者后台,创建应用,获取APIkey、API-SECRET
等账号信息。
2、使用PHP语言编写发送短信代码
2.1 接口地址和参数
短信发送接口地址:https://sms.yunpian.com/v2/sms/single_send.json
参数说明:
apikey
:云片网提供的唯一身份认证标识,必填;
mobile
:接收短信的手机号码,多个号码以逗号分隔,必填;
text
:短信内容,必填
2.2 发送短信代码示例
<?php //接口地址 $url = "https://sms.yunpian.com/v2/sms/single_send.json"; //云片网提供的APIkey $apikey = "your_api_key"; //接收短信的手机号码 $mobile = "your_mobile"; //短信内容 $text = "您的验证码是3657。"; //参数拼接 $data = array('apikey' => $apikey, 'mobile' => $mobile, 'text' => $text); //curl请求 $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close($ch); //处理结果 $result_arr = json_decode($result, true); if ($result_arr['code'] == 0) { echo "短信发送成功"; } else { echo "短信发送失败,失败代码:" . $result_arr['code'] . ",失败原因:" . $result_arr['msg']; } ?>
本文链接:http://so.lmcjl.com/news/12781/