关于验证码的一些疑惑?
小白
小白 2017-02-11 09:10:35
0
2
1451

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

小白
小白

好好学习,天天向上!!!

reply all(2)
数据分析师

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.

迷茫

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

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

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

verify.png

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

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template