SmsUtil.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. namespace loyalsoft;
  3. ini_set("display_errors", "on"); # 打开错误输出
  4. require_once __DIR__ . '/msmapi/api_sdk/vendor/autoload.php';
  5. use Aliyun\Core\Config;
  6. use Aliyun\Core\Profile\DefaultProfile;
  7. use Aliyun\Core\DefaultAcsClient;
  8. use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest;
  9. use Aliyun\Api\Sms\Request\V20170525\QuerySendDetailsRequest;
  10. Config::load(); // 加载区域结点配置
  11. /**
  12. * 阿里云 - 短信Util
  13. *
  14. * @property \Aliyun\Core\DefaultAcsClient acsClient
  15. */
  16. class SmsUtil {
  17. /**
  18. * asc(http)网络通信
  19. * @var \Aliyun\Core\DefaultAcsClient 阿里
  20. */
  21. var $acsClient;
  22. /**
  23. * 单例模式
  24. * @staticvar type $smsObj
  25. * @return \SmsObject
  26. */
  27. private static function inst() {
  28. static $smsObj = null;
  29. if (is_null($smsObj)) {
  30. $smsObj = new SmsUtil(
  31. "FtwrIeI6uXLylJ0h", "SAI0ZJf7qrvngvkZCU6qgQF3d7A4dP"
  32. );
  33. }
  34. return $smsObj;
  35. }
  36. /**
  37. * 构造器
  38. *
  39. * @param string $accessKeyId 必填,AccessKeyId
  40. * @param string $accessKeySecret 必填,AccessKeySecret
  41. */
  42. private function __construct($accessKeyId, $accessKeySecret) {
  43. $product = "Dysmsapi"; // 短信API产品名
  44. $domain = "dysmsapi.aliyuncs.com"; // 短信API产品域名
  45. $region = "cn-hangzhou"; // 暂时不支持多Region
  46. $endPointName = "cn-hangzhou"; // 服务结点
  47. $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret); // 初始化用户Profile实例
  48. DefaultProfile::addEndpoint($endPointName, $region, $product, $domain); // 增加服务结点
  49. $this->acsClient = new DefaultAcsClient($profile); // 初始化AcsClient用于发起请求
  50. }
  51. /**
  52. * 发送短信范例
  53. *
  54. * @param string $signName <p>
  55. * 必填, 短信签名,应严格"签名名称"填写,参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/sign">短信签名页</a>
  56. * </p>
  57. * @param string $templateCode <p>
  58. * 必填, 短信模板Code,应严格按"模板CODE"填写, 参考:<a href="https://dysms.console.aliyun.com/dysms.htm#/template">短信模板页</a>
  59. * (e.g. SMS_0001)
  60. * </p>
  61. * @param string $phoneNumbers 必填, 短信接收号码 (e.g. 12345678901)
  62. * @param array|null $templateParam <p>
  63. * 选填, 假如模板中存在变量需要替换则为必填项 (e.g. Array("code"=>"12345", "product"=>"阿里通信"))
  64. * </p>
  65. * @param string|null $outId [optional] 选填, 发送短信流水号 (e.g. 1234)
  66. * @return stdClass
  67. */
  68. static public function sendSms($signName, $templateCode, $phoneNumbers, $templateParam = null, $outId = null) {
  69. $request = new SendSmsRequest(); // 初始化SendSmsRequest实例用于设置发送短信的参数
  70. $request->setPhoneNumbers($phoneNumbers); // 必填,设置雉短信接收号码
  71. $request->setSignName($signName); // 必填,设置签名名称
  72. $request->setTemplateCode($templateCode); // 必填,设置模板CODE
  73. if ($templateParam) { // 可选,设置模板参数
  74. $request->setTemplateParam(json_encode($templateParam));
  75. }
  76. if ($outId) { // 可选,设置流水号
  77. $request->setOutId($outId);
  78. }
  79. $acsResponse = self::inst()->acsClient->getAcsResponse($request); // 发起访问请求
  80. // var_dump($acsResponse); // 打印请求结果
  81. return $acsResponse;
  82. }
  83. /**
  84. * 查询短信发送情况范例
  85. *
  86. * @param string $phoneNumbers 必填, 短信接收号码 (e.g. 12345678901)
  87. * @param string $sendDate 必填,短信发送日期,格式Ymd,支持近30天记录查询 (e.g. 20170710)
  88. * @param int $pageSize 必填,分页大小
  89. * @param int $currentPage 必填,当前页码
  90. * @param string $bizId 选填,短信发送流水号 (e.g. abc123)
  91. * @return stdClass
  92. */
  93. static public function queryDetails($phoneNumbers, $sendDate, $pageSize = 10, $currentPage = 1, $bizId = null) {
  94. $request = new QuerySendDetailsRequest(); // 初始化QuerySendDetailsRequest实例用于设置短信查询的参数
  95. $request->setPhoneNumber($phoneNumbers); // 必填,短信接收号码
  96. $request->setBizId($bizId); // 选填,短信发送流水号
  97. $request->setSendDate($sendDate); // 必填,短信发送日期,支持近30天记录查询,格式Ymd
  98. $request->setPageSize($pageSize); // 必填,分页大小
  99. $request->setCurrentPage($currentPage); // 必填,当前页码
  100. $acsResponse = self::inst()->acsClient->getAcsResponse($request); // 发起访问请求
  101. // var_dump($acsResponse); // 打印请求结果
  102. return $acsResponse;
  103. }
  104. }