ThinkPPHP学习(一)生成图片验证码

效果图如下:

实现代码很简单

step1.在Controller中添加方法

public function verify () {
        $Verify = new ThinkVerify();
        $Verify->entry();
    } 

step2.在地址栏中输入地址(你自己的页面地址+/Home/Index/verify)

http://localhost:81/phpWeb/www/web/admin.php/Home/Index/verify

 

Git地址:phpWeb

原文地址:https://www.cnblogs.com/BigBigLiang/p/5584631.html