当前路径:vendor/veryinf/mb-helper/src/sms/Aliyun.php <?php namespace mb\helper\sms; use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest; use Aliyun\Core\DefaultAcsClient; use Aliyun\Core\Profile\DefaultProfile; use Aliyun\Core\Regions\EndpointConfig; use mb\helper\Sms; class Aliyun extends Sms { private $config = null; /** * @var DefaultAcsClient */ private $client = null; /** * Sms constructor. * * @param $config * key - AppKey * secret - AppSecret * signature- 签名 */ public function __construct($config) { $this->config = $config; $product = "Dysmsapi"; $domain = "dysmsapi.aliyuncs.com"; $region = "cn-hangzhou"; $endPointName = "cn-hangzhou"; if (!defined('ENABLE_HTTP_PROXY')) { define('ENABLE_HTTP_PROXY', false); } EndpointConfig::load(); $profile = DefaultProfile::getProfile($region, $this->config['key'], $this->config['secret']); DefaultProfile::addEndpoint($endPointName, $region, $product, $domain); $this->client = new DefaultAcsClient($profile); } public function send($phone, $tpl, $pars = array()) { $request = new SendSmsRequest(); $request->setPhoneNumbers($phone); $request->setSignName($this->config['signature']); $request->setTemplateCode($tpl); $request->setTemplateParam(json_encode($pars, JSON_UNESCAPED_UNICODE)); $resp = $this->client->getAcsResponse($request); if (is_object($resp) && $resp->Code == 'OK') { return true; } return error(-1, $resp->Message); } public function test() { $config = array(); $config['key'] = '23360498'; $config['secret'] = '2971baf1489c7645e316671a8ccbff6e'; $config['signature'] = '大树桩TEAM'; $sms = new Aliyun($config); $pars = []; $pars['product'] = '大树桩'; $pars['code'] = '0482'; $sms->send('15535109820', 'SMS_8955595f', $pars); exit; } }
相关源码
- 可旋转的彩色立方体C#源代码2021-10-29
- 在线考试系统2021-10-15
- EduSoho开源网校系统源码2019-06-27
- 仿拼多多小程序商城源码2019-06-06
- PHP5网站运行监测系统源码2017-04-14
关于我们 | 顾问团队 | 发展历程 | 联系我们 | 源码上传
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2022. 京ICP备09089570号 | 京公网安备11010702000869号
联系电话(Tel):4008-010-151(免长途)
地址:北京市海淀区大恒科技大厦五层 邮编:100080
Floor 5th,Daheng Building,Zhongguancun,Beijing,China,100080
51Aspx.com 版权所有 CopyRight © 2006-2022. 京ICP备09089570号 | 京公网安备11010702000869号