Ucpaas.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Kevin
  5. * Date: 2018/6/6
  6. * Time: 16:32
  7. */
  8. namespace yzx;
  9. class Ucpaas
  10. {
  11. //API请求地址
  12. const BaseUrl = "https://open.ucpaas.com/ol/sms/";
  13. //开发者账号ID。由32个英文字母和阿拉伯数字组成的开发者账号唯一标识符。
  14. private $accountSid;
  15. //开发者账号TOKEN
  16. private $token;
  17. public function __construct($options)
  18. {
  19. if (is_array($options) && !empty($options)) {
  20. $this->accountSid = isset($options['accountsid']) ? $options['accountsid'] : '';
  21. $this->token = isset($options['token']) ? $options['token'] : '';
  22. } else {
  23. throw new Exception("非法参数");
  24. }
  25. }
  26. private function getResult($url, $body = null, $method)
  27. {
  28. $data = $this->connection($url,$body,$method);
  29. if (isset($data) && !empty($data)) {
  30. $result = $data;
  31. } else {
  32. $result = '没有返回数据';
  33. }
  34. return $result;
  35. }
  36. /**
  37. * @param $url 请求链接
  38. * @param $body post数据
  39. * @param $method post或get
  40. * @return mixed|string
  41. */
  42. private function connection($url, $body,$method)
  43. {
  44. if (function_exists("curl_init")) {
  45. $header = array(
  46. 'Accept:application/json',
  47. 'Content-Type:application/json;charset=utf-8',
  48. );
  49. $ch = curl_init($url);
  50. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  51. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
  52. if($method == 'post'){
  53. curl_setopt($ch,CURLOPT_POST,1);
  54. curl_setopt($ch,CURLOPT_POSTFIELDS,$body);
  55. }
  56. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  57. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  58. $result = curl_exec($ch);
  59. curl_close($ch);
  60. } else {
  61. $opts = array();
  62. $opts['http'] = array();
  63. $headers = array(
  64. "method" => strtoupper($method),
  65. );
  66. $headers[]= 'Accept:application/json';
  67. $headers['header'] = array();
  68. $headers['header'][]= 'Content-Type:application/json;charset=utf-8';
  69. if(!empty($body)) {
  70. $headers['header'][]= 'Content-Length:'.strlen($body);
  71. $headers['content']= $body;
  72. }
  73. $opts['http'] = $headers;
  74. $result = file_get_contents($url, false, stream_context_create($opts));
  75. }
  76. return $result;
  77. }
  78. /**
  79. 单条发送短信的function,适用于注册/找回密码/认证/操作提醒等单个用户单条短信的发送场景
  80. * @param $appid 应用ID
  81. * @param $mobile 接收短信的手机号码
  82. * @param $templateid 短信模板,可在后台短信产品→选择接入的应用→短信模板-模板ID,查看该模板ID
  83. * @param null $param 变量参数,多个参数使用英文逗号隔开(如:param=“a,b,c”)
  84. * @param $uid 用于贵司标识短信的参数,按需选填。
  85. * @return mixed|string
  86. * @throws Exception
  87. */
  88. public function SendSms($appid,$templateid,$param=null,$mobile,$uid){
  89. $url = self::BaseUrl . 'sendsms';
  90. $body_json = array(
  91. 'sid'=>$this->accountSid,
  92. 'token'=>$this->token,
  93. 'appid'=>$appid,
  94. 'templateid'=>$templateid,
  95. 'param'=>$param,
  96. 'mobile'=>$mobile,
  97. 'uid'=>$uid,
  98. );
  99. $body = json_encode($body_json);
  100. $data = $this->getResult($url, $body,'post');
  101. return $data;
  102. }
  103. /**
  104. 群发送短信的function,适用于运营/告警/批量通知等多用户的发送场景
  105. * @param $appid 应用ID
  106. * @param $mobileList 接收短信的手机号码,多个号码将用英文逗号隔开,如“18088888888,15055555555,13100000000”
  107. * @param $templateid 短信模板,可在后台短信产品→选择接入的应用→短信模板-模板ID,查看该模板ID
  108. * @param null $param 变量参数,多个参数使用英文逗号隔开(如:param=“a,b,c”)
  109. * @param $uid 用于贵司标识短信的参数,按需选填。
  110. * @return mixed|string
  111. * @throws Exception
  112. */
  113. public function SendSms_Batch($appid,$templateid,$param=null,$mobileList,$uid){
  114. $url = self::BaseUrl . 'sendsms_batch';
  115. $body_json = array(
  116. 'sid'=>$this->accountSid,
  117. 'token'=>$this->token,
  118. 'appid'=>$appid,
  119. 'templateid'=>$templateid,
  120. 'param'=>$param,
  121. 'mobile'=>$mobileList,
  122. 'uid'=>$uid,
  123. );
  124. $body = json_encode($body_json);
  125. $data = $this->getResult($url, $body,'post');
  126. return $data;
  127. }
  128. }