PHP code example of yzh52521 / alisms

1. Go to this page and download the library: Download yzh52521/alisms 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/ */

    

yzh52521 / alisms example snippets


//引入
use yzh52521\AliSms;
$config = [
    'accessKeyId'     => '',
    'accessKeySecret' => '',
    'templateCode'    => '',
    'signName'        => '',
];
$params = [
    'mobile' => '手机号',
    'code' => '1234'//验证码
];
$sms = new AliSms($config);
//发送短信
$info = $sms->sendSms($params);

$mobile = [
   '132xxxxxxxx',
   '135xxxxxxxx'
];
$sign   = ['签名', '签名'];

$params=[
//模板变量名 => 模板变量值
    ['name' => '张三', 'product' => '产品'],
    ['name' => '李四', 'product' => '产品'],
];
//批量发送
$request = $sms->sendBatchSms($mobile,'SMS_111111',$sign,$params);