tp5 阿里大于短信服务发送验证码 并验证

一   下载阿里大于的PHPSDk

具体文件  提供一份 下载 https://gitee.com/itxkf/aliyun-php-sdk

将这个文件夹放入TP5框架中extend目录中(extend目录用于存放一些第三方类库)。

我们只需要将目录里的api_sdk复制出来到tp5根目录的extend下面。文件夹复制过去后,我们最好更改一下名称,比如我们更改为alisms。

2-在直接在应用目录下的函数库common里写函数调用


首先在函数顶部引入阿里云短信的命名空间,无需修改,官方sdk自带的命名空间
use Aliyun\Core\Config;
use Aliyun\Core\Profile\DefaultProfile;
use Aliyun\Core\DefaultAcsClient;
use Aliyun\Api\Sms\Request\V20170525\SendSmsRequest;
 
//阿里短信函数,$mobile为手机号码,$code为自定义随机数
function sendMsg($mobile,$code){
 
    //这里的路径EXTEND_PATH就是指tp5根目录下的extend目录,系统自带常量。alisms为我们复制api_sdk过来后更改的目录名称
    require_once EXTEND_PATH.'alisms/vendor/autoload.php';
    Config::load();             //加载区域结点配置
 
    $accessKeyId = '×××××××××××××';  //阿里云短信获取的accessKeyId
 
    $accessKeySecret = '×××××××××××××';    //阿里云短信获取的accessKeySecret
 
    //这个个是审核过的模板内容中的变量赋值,记住数组中字符串code要和模板内容中的保持一致
    //比如我们模板中的内容为:你的验证码为:${code},该验证码5分钟内有效,请勿泄漏!
    $templateParam = array("code"=>$code);           //模板变量替换
 
    $signName = 'xxxxxxxxx'; //这个是短信签名,要审核通过
 
    $templateCode = 'SMS_×××××××';   //短信模板ID,记得要审核通过的
 
 
    //短信API产品名(短信产品名固定,无需修改)
    $product = "Dysmsapi";
    //短信API产品域名(接口地址固定,无需修改)
    $domain = "dysmsapi.aliyuncs.com";
    //暂时不支持多Region(目前仅支持cn-hangzhou请勿修改)
    $region = "cn-hangzhou";
 
    // 初始化用户Profile实例
    $profile = DefaultProfile::getProfile($region, $accessKeyId, $accessKeySecret);
    // 增加服务结点
    DefaultProfile::addEndpoint("cn-hangzhou", "cn-hangzhou", $product, $domain);
    // 初始化AcsClient用于发起请求
    $acsClient= new DefaultAcsClient($profile);
 
    // 初始化SendSmsRequest实例用于设置发送短信的参数
    $request = new SendSmsRequest();
    // 必填,设置雉短信接收号码
    $request->setPhoneNumbers($mobile);
 
    // 必填,设置签名名称
    $request->setSignName($signName);
 
    // 必填,设置模板CODE
    $request->setTemplateCode($templateCode);
 
    // 可选,设置模板参数
    if($templateParam) {
        $request->setTemplateParam(json_encode($templateParam));
    }
 
    //发起访问请求
    $acsResponse = $acsClient->getAcsResponse($request);
 
    //返回请求结果
    $result = json_decode(json_encode($acsResponse),true);
    return $result;

3-在控制器里调用

 /*
        * 前台ajax请求发送短信验证码
        */
    public function sendSms($phone)
    {
        $mobile = $phone;
        //$code = 1111;
        $code = mt_rand(10000, 99999);
        $result = sendMsg($mobile, $code);
        $code=$code;
        if ($result['Code'] == 'OK') {
            //存到cookie
            echo $code;
            cookie("code",$code,3600);
        }
    }

4-ajax的请求

function bindPhoneNum(){
    //ajaxt提交去后台发送验证码
    $.getJSON('/admin/user/sendSms?phone='+$("#phone").val(),function (data) {
        console.dir(data);
    })
    //启用输入框
    $('#captcha').prop('disabled',false);

    var time=30;
    var interval = setInterval(function(){
        time--;
        if(time<=0){
            clearInterval(interval);
            var html = '获取验证码';
            $('#get_captcha').prop('disabled',false);
        } else{
            var html = time + ' 秒后再次获取';
            $('#get_captcha').prop('disabled',true);
        }

        $('#get_captcha').val(html);
    },1000);
}

5--html代码

	

6----注册时控制器的代码

 public function reg(){
        if(\request()->isPost()){
            //读取cookie的值
            $code=cookie("code");
            if($code!=input("captcha")){
                echo "验证码错误";exit;
            }
            $data=$_POST;
            var_dump($data);exit;
        }
        return $this->fetch("user-reg");
    }

不对的地方 请指教!

 参考地址:https://www.kancloud.cn/he_he/thinkphp5/787173

你可能感兴趣的:(ThinkPHP5.0)