1 2 3 4 5 6 7 8 9 10 11 12 | publicfunctionactions() { returnarray( // captcha action renders the CAPTCHA image displayed on the contact page 'captcha'=>array( 'class’=>'CCaptchaAction', 'backColor'=>0xFFFFFF,//背景颜色 'minLength'=>4,//最短为4位 'maxLength'=>4,//是长为4位 'transparent'=>true,//显示为透明,当关闭该选项,才显示背景颜色 ), ); |
1 2 3 4 5 6 7 8 9 10 11 | labelEx($model,’verifyCode’); ?> widget(‘CCaptcha’); ?> textField($model,’verifyCode’); ?> 输入验证码 error($model,’verifyCode’); ?> |
1 2 3 4 5 | public$username; public$password; public$verifyCode; public$rememberMe; private$_identity; |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |