laravel 验证码类

2019-3-29 hubo php开发

第一步、文件下载之后(字体库和验证码类)放在源文件的resources目录下的org目录,org目录需要自己创建(文件下载)

第二步、在根目录的index.php开启session

session_start();


第三步、在控制器引入验证码类

require_once 'resources\org\vcode.class.php';


第四步、编写生成验证码的方法,并创建对应生成验证码的路由
public function code(){
        $vcode = new \Vcode;
        $vcode->doimg();
    }

Route::get('code','LoginController@code');


第五步、在前端接收

<img src="{{url('admin/code')}}" alt="" onclick="this.src='{{url('admin/code')}}?'+Math.random()">


第六步、可以调用第三方验证码类中的get方法获取验证码的值,判断用户输入的是否一致
public function getcode(){
        $vcode = new \Vcode;
        echo $vcode->get();
    }
Route::get('getcode','LoginController@getcode');

网站备案号:京ICP备11043289号-1 北京市公安局网络备案 海1101084571
版权所有 北京育灵童科技发展有限公司 Copyright © 2002-2024 www.elight.cn, All Rights Reserved