YII的验证码动态刷新 [ 未指定版本 ]
YII的验证码想要动态刷新,可以参考下
public function actionTestCaptcha()
{
$captcha= new CCaptchaAction($this,'captcha');
Yii::app()->session['captcha'] = $captcha->fixedVerifyCode = substr(md5(time()), 11, 4);
$captcha->transparent = true;
$captcha->maxLength = 4;
$captcha->minLength = 4;
$captcha->height = 35;
$captcha->width = 80;
$captcha->run();
}
游学
注册时间:2012-06-30
最后登录:2014-09-19
在线时长:0小时2分
最后登录:2014-09-19
在线时长:0小时2分
- 粉丝5
- 金钱70
- 威望60
- 积分670
共 1 条评论
我修改的是Yii的源代码