«

解决Yii自带的验证码不随页面刷新自动刷新的问题

时间:2024-2-10 11:12     作者:韩俊     分类: PHP


关于yii如何使用自带的验证码,可以参考本站文章:

yii加载自带验证码的方法

但是以上操作仅仅加上了验证码功能,还有许多问题需要解决,比如你马上就会发现验证码添加好之后,刷新页面后验证码却不会自动刷新,下面就总结一下这个问题的解决方法,具体如下:

从网上搜到的资料基本上提供了三种解决方法。

一、修改源码CCaptchaAction.php的run方法,修改框架源码,不推荐。

二、写一个js,在页面刷新的时候调用js自动点击验证码图片实现刷新,感觉有点...,太依赖js了不太好吧。

三、在components文件夹下新建一个文件CaptchaPhpernote.php,文件代码如下:

class CaptchaPhpernote extends CCaptchaAction{
    //继承CCaptchaAction类,然后重写run方法,使得验证码在页面刷新时刷新
    public function run(){
        if (isset($_GET[self::REFRESH_GET_VAR])){
            $code=$this->getVerifyCode(true);
            echo CJSON::encode(array(
                'hash1'=>$this->generateValidationHash($code),
                'hash2'=>$this->generateValidationHash(strtolower($code)),
                'url'=>$this->getController()->createUrl($this->getId(),array('v'=>uniqid())),
            ));
        }else {
            $this->renderImage($this->getVerifyCode(true));
            Yii::app()->end();
        }
    }
}

之后修改验证码所在的controller中的class为captcha即可,代码如下:

public function actions(){
    return array(
        'captcha'=>array(
        'class'=>'CaptchaPhpernote',//修改一下这里
        'backColor'=>0xFFFFFF,
        'maxLength'=>'4',
        'minLength'=>'4',
        'height'=>'40',
        'width'=>'230',
        'transparent'=>true,
        'testLimit'=>0,
        ),
    );
}

标签: php php教程

热门推荐