YII框架 驗證碼使用 轉(zhuǎn)載自墻角花開的博客
Web開發(fā)的過程中, 經(jīng)常會用到驗證碼, 以防止機(jī)器人不斷的提交數(shù)據(jù), 造成網(wǎng)站的癱瘓. Yii里提供了一個驗證碼的插件, 就是Captcha. 在項目中使用Captcha需要以下一些設(shè)置:
在Controller里添加方法 actions
public function actions()
{
return array(
// captcha action renders the CAPTCHA image displayed on the contact page
'captcha'=>array(
'class'=>'CCaptchaAction',
'backColor'=>0xFFFFFF,
'maxLength'=>'4', // 最多生成幾個字符
'minLength'=>'2', // 最少生成幾個字符
'height'=>'40'
),
);
}
同時, 需要將captacha添加到accessRules里, 以允許所有用戶訪問該方法.如下
array('allow', // allow all users to perform 'index' and 'view' actions
'actions'=>array('index','view','captcha'),
'users'=>array('*'),
),
第二在你的視圖里面加上以下代碼 ?
widget('CCaptcha'); ?>
// 下面這個可以點擊圖片進(jìn)行換驗證碼
$this->widget('CCaptcha',array('showRefreshButton'=>false,'clickableImage'=>true,'imageOptions'=>array('alt'=>'點擊換圖','title'=>'點擊換圖','style'=>'cursor:pointer')));?
?>
?
第三 我們需要在我們的form model中添加一個verifycode的屬性來存放用戶輸入的驗證碼,然后通過captcha驗證器來驗證用戶輸入的驗證碼的準(zhǔn)確性。
?public $verifyCode;
并在rules中添加如下
public function rules()
{
return array(
...
array('verifyCode', 'captcha', 'on'=>'login', 'allowEmpty'=> !extension_loaded('gd')),
...
);
}