使用Zend_Captcha生成验证码的方法 程序员文章站 2022-03-30 13:20:51 ... class TestController extends Lyw0301_Controller_Action { public function init() { parent::init(); $this->view->title = '测试'; $this->view->baseUrl = $this->getFrontController()->getBaseUrl(); // $this->_helper->viewRenderer->setNoRender(); //Zend_Layout::getMvcInstance()->disableLayout(); } function generateCaptcha() { $captcha = new Zend_Captcha_Image(); $captcha->setTimeout('300') ->setWordLen('6') ->setHeight('80') ->setFont('./images/font/micross.ttf') ->setImgDir('./images/code'); $captcha->generate(); return $captcha->getId(); } //validates captcha response function validateCaptcha($captcha) { $captchaId = $captcha['id']; $captchaInput = $captcha['input']; $captchaSession = new Zend_Session_Namespace('Zend_Form_Captcha_' . $captchaId); $captchaIterator = $captchaSession->getIterator(); Zend_Debug::dump($captchaIterator);exit; $captchaWord = $captchaIterator['word']; if($captchaWord) { if( $captchaInput != $captchaWord ){ return false; } else { return true; } } else { return false; } } public function indexAction() { $captchaId = $this->generateCaptcha(); $this->view->captchaId = $captchaId; if(isset($_POST['captcha'])) { $captcha = $_POST['captcha']; if( $this->validateCaptcha($captcha) ) { $this->view->message = 'yes'; } else { $this->view->message = 'no'; } } } } ?> 复制代码 相关标签: 使用Zend_Captcha生成验证码的方法 上一篇: PostgreSQL 再迎暴涨,3 月份数据库排名 下一篇: Python中二维列表如何获取子区域元素的组成 推荐阅读 sketchup怎么怎么镜像物体?sketchup镜像命令的使用方法 php中加密解密DES类的简单使用方法示例 thinkphp 一个页面使用2次分页的实现方法 Android编程实现悬浮窗获取并显示当前内存使用量的方法 gearman管理工具GearmanManager的安装与php使用方法示例 手机flv播放器(手机能播放m3u8格式的播放器使用方法) 在 PHP 和 Laravel 中使用 Traits的方法 Android WebView的使用方法及与JS 相互调用 删库跑路?使用xtraback备份MySQL数据库的方法 在Laravel中使用MongoDB的方法示例