首页 > 编程 > PHP > 正文

php调用云片网接口实现发送短信的案例

2020-03-22 18:55:00
字体:
来源:转载
供稿:网友
php调用云片网接口发送短信的实现方法

云片网发送短信

/**   * [SendSms description]   * @param [string] $tpl_content [发送的短信内容]   * @param     $send_mobile [发送的手机号码]   */  html' target='_blank'>public function SendSms($tpl_content,$send_mobile)  {    $this->yunpian_appkey = env('yunpian_appkey');//云片账户appkey    $this->yunpian_secret = env('yunpianSecretXYZ');//云片账户secret    //初始化    $ch    = curl_init();    $data=array('text'=>$tpl_content,'apikey'=>$this->yunpian_appkey,'mobile'=>$send_mobile);    curl_setopt ($ch, CURLOPT_URL, 'https://sms.yunpian.com/v2/sms/single_send.json');    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept:text/plain;charset=utf-8', 'Content-Type:application/x-www-form-urlencoded', 'charset=utf-8'));    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);    curl_setopt($ch, CURLOPT_TIMEOUT, 10);    curl_setopt($ch, CURLOPT_POST, 1);    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);    curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));    $send_data = curl_exec($ch);    curl_close($ch);    //解析返回结果(json格式字符串)    $backmassage = json_decode($send_data,true);    echo '$backmassage ';    //这里是写在了job里面所以记了个日志可忽略!    Log::info('smsmessagelog: '.$send_data);    return [$backmassage,$send_data];  }

以上就是php调用云片网接口实现发送短信的案例的详细内容,更多请关注 其它相关文章!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表