PHP code example of timerlau / aliyun-dysms-php-sdk

1. Go to this page and download the library: Download timerlau/aliyun-dysms-php-sdk library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

timerlau / aliyun-dysms-php-sdk example snippets

`

修改 config/app.php 如下:
1. providers 增加 Timerlau\AliyunSms\AliyunSmsServiceProvider::class,
2. aliases   增加 'Sms' => Timerlau\AliyunSms\Facades\Sms::class,

php artisan vendor:publish --provider="Timerlau\AliyunSms\AliyunSmsServiceProvider"

修改 config/sms.php

// 阿里云 KEY & SECRET
'ACCESS_KEY_ID'=>env('SMS_ACCESS_KEY_ID'),
'ACCESS_KEY_SECRET'=>env('SMS_ACCESS_KEY_SECRET'),

// 默认短信签名
'default_sign_name'=>env('SMS_DEFAULT_SIGN_NAME'),

// 默认短信模板编号
'default_template_code'=>env('SMS_DEFAULT_TEMPLATE_CODE'),
`
use Sms;

// 默认的发送
$state = Sms::phone('手机号')->assign(['code'=>'123456'])->send();

// 设置手机号,赋值变量,选择模板等操作
$sms = Sms::phone($mobile);
$state = $sms->outId($outid)->assign(['code'=>$code])->send();

if (!$state) {
    dd($sms->getException());
} else {
    echo '发送成功 <br>';
    dd('发送回执号: ' . $sms->bizId);
    dd('hello, sms');
}

// 短信发送状态 bizid可选
$sms = Sms::phone($mobile);
$response = $sms->bizId($biz_id)->history();

// 使用MNS消息队列,查询手机接收状况 (消息队列不太好,建议使用 HTTP批量推送模式)
// 需要开启MNS

// 发送短信
$sms = Sms::phone($mobile);
$state = $sms->outId($outid)->assign(['code'=>$code])->send();

if (!$state) {
    dd($sms->getException());
} else {
    echo '发送成功 ' . $mobile . '  <br>';
    echo '发送回执号: ' . $sms->bizId . '<br>';

    $bool = $sms->receive(function ($message) {
        dump($message);
        return true;
    });

    if ($bool !== True) {
        dump($bool);
        dd('获取短信状态异常');
    }
    dump('hello, sms');
    dd($bool);
}

// 批量发送短信
$phone = ['176xxx','186xxx','187xxx'];
$sign = ['签名1', '签名1', '签名1'];
$template = 'SMS_xxx';

$assign = [];
foreach ($phone as $mobile) {
    $assign[]['code'] = mt_rand(1000, 9999);
}

$sms = Sms::phone($phone)->sign($sign)->template($template)->assign($assign);
dd($sms->multiSend());