dshufeng/dysms

阿里短信-适用Laravel、Yii、Thinkphp等任何PHP项目...

v1.0.4 2019-03-21 06:42 UTC

This package is auto-updated.

Last update: 2024-04-21 19:59:33 UTC


README

Latest Stable Version Total Downloads php>=5.4 License

PS:阿里大于 https://github.com/flc1125/alidayu

安装

composer require dshufeng/dysms

使用

<?php
use Flc\Dysms\Client;
use Flc\Dysms\Request\SendSms;

$config = [
    'accessKeyId'    => 'LTAIbVA2LRQ1tULr',
    'accessKeySecret' => 'ocS48RUuyBPpQHsfoWokCuz8ZQbGxl',
];

$client  = new Client($config);
$sendSms = new SendSms;
$sendSms->setPhoneNumbers('1500000000');
$sendSms->setSignName('叶子坑');
$sendSms->setTemplateCode('SMS_77670013');
$sendSms->setTemplateParam(['code' => rand(100000, 999999)]);
$sendSms->setOutId('demo');

print_r($client->execute($sendSms));

支持

License

MIT