ThinkPHP学习图片验证码

Posted brucemengbm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP学习图片验证码相关的知识,希望对你有一定的参考价值。

今天用到图片验证码的功能,在网上找到Thinkphp的下面代码:

	Public function verify(){
		import(‘think.Image‘);
		Image::buildImageVerify();
	 }
加入到Controller中,通过地址“http://localhost/index.php/passport/index/verify”来訪问,却提示下面错误:

Class ‘Passport\Controller\Image‘ not found

技术分享
我的ThinkPHP版本号是:3.2.1,经过查看相应版本号的文档“http://document.thinkphp.cn/manual_3_2.html#verify”,发现须要使用下面代码:

	Public function verify(){
		$Verify = new \Think\Verify();
		$Verify->entry();
	 }
但刷新浏览之后又出错了“Call to undefined function Think\imagecreate()”

技术分享

搜索之后发现是没有启用“extension=php_gd2.dll”扩展。在php.ini中去掉前边的分号; 再刷新浏览图片验证码就出来了。


技术分享









以上是关于ThinkPHP学习图片验证码的主要内容,如果未能解决你的问题,请参考以下文章

thinkphp3.2验证码怎么写

ThinkPHP框架学习 --- thinkphp 3.2.3 验证码验证使用教程分享

Thinkphp 3.2 验证码图片显示错误解决方法

thinkphp5 不使用composer进行图片验证码开发

thinkphp验证码(支持图片和base64)

ThinkPHP框架之验证码