本文实例讲述了ThinkPHP3.2.1图片验证码实现方法。分享给大家供大家参考,具体如下:
今天用到图片验证码的功能,在网上找到ThinkPHP的以下代码:
PHP;">
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”,发现需要使用以下代码:
entry();
}
但刷新浏览之后又出错了“Call to undefined function Think\imagecreate()”
搜索之后发现是没有启用“