search

Home  >  Q&A  >  body text

关于验证码的一些疑惑?

这个是不是把手册中的引入进来然后使用就可以了?

小白小白2832 days ago1441

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-10-01 00:04:05

    Any doubts about the verification code? -PHP Chinese website Q&A-Some questions about the verification code? -PHP Chinese website Q&A

    Let’s take a look and learn.

    reply
    0
  • 迷茫

    迷茫2017-02-11 09:15:52

    我们在控制器中引入手册中的即可

     public function verify(){
        	//验证码
          	$Verify = new \Think\Verify();
    		$Verify->fontSize = 40;
    		$Verify->codeSet = '0123456789'; 
    		$Verify->length   = 4;
    		$Verify->useNoise = true;
    		$Verify->entry();
        }

    然后在html页面也要写上一点代码,如下:

    verify.png

    这样在页面中就可以显示验证码,然后我们点击验证码,还会刷新验证码!

    reply
    2
  • Cancelreply