之前的旧版本(v1.0
)开源出去后,使用者较多;但兼容各大框架较差;为此发布v2.0
;该版本全新架构,适用任意框架!
v2.0
不支持从v1.0
直接升级,请抛弃v1.0
源码
功能
环境
- PHP >= 5.4
- composer
安装
composer require flc/alidayu
使用
<?php
use Flc\Alidayu\Client;
use Flc\Alidayu\App;
use Flc\Alidayu\Requests\AlibabaAliqinFcSmsNumSend;
// 配置信息
$config = [
'app_key' => '*****',
'app_secret' => '************',
];
$client = new Client(new App($config));
$req = new AlibabaAliqinFcSmsNumSend;
$req->setRecNum('13312311231')
->setSmsParam([
'number' => rand(100000, 999999)
])
->setSmsFreeSignName('叶子坑')
->setSmsTemplateCode('SMS_15105357');
$resp = $client->execute($req)
print_r($resp);
print_r($resp->result->model);
?>
帮助
- 意见、BUG反馈: https://github.com/flc1125/al...
支持
- 官方网址: https://www.alidayu.com/
- 官方API文档: https://api.alidayu.com/doc2/...
- composer: https://getcomposer.org/
License
MIT
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。