anerg2046/alidayu

alidayu sms library

1.1.0 2017-01-05 08:23 UTC

This package is auto-updated.

Last update: 2024-04-12 19:18:19 UTC


README

安装方法

composer require anerg2046/alidayu

类库使用的命名空间为\\anerg\\Alidayu

典型用法

以ThinkPHP5为例

<?php

namespace app\common\service;

use anerg\Alidayu\SmsGateWay;

class Sms {

    public function send_code($mobile) {
        $code = mt_rand(1000, 9999);
        $AliSMS = new SmsGateWay();
        $AliSMS->send($mobile, ['code'=>$code], 'SMS_10210103');
    }

}