当前位置:首页 > PHP教程 > php高级应用 > 列表

php调用云片网接口发送短信的实现方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-16 10:41:56 浏览: 评论:0 

这篇文章主要介绍了php调用云片网接口发送短信的实现方法的相关资料,希望通过本文能帮助到大家,让大家实现这样的功能,需要的朋友可以参考下。

php调用云片网接口发送短信的实现方法

云片网发送短信

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

云片短信接口文档:http://www.yunpian.com/api2.0/api-domestic/single_send.html

Tags: php调用云片网接口 php发送短信

分享到: