YII 驗證碼與session字首的修改
阿新 • • 發佈:2019-02-04
system.web.widget.
CCaptchaAction.php ----控制器使用
CCaptcha.php ---from表單使用
例子:
生成驗證碼的小物件 是在表單裡面新增的
<?php $this -> widget('CCaptcha',array('buttonLabel'=>'更換圖片')); ?>
載入驗證碼類的是在 控制器的
程式碼:
public function actions(){
return array(
'captcha'=>array(
'class'=>'system.web.widgets.captcha.CCaptchaAction',
'width'=>70,
'height'=>40,
'maxLength'=>'4',
'minLength'=>'4',
),
);
}
SESSIOn 修改字首:
StateKeyPrefix 的值
檔案位置:system.web.auth.CWebUser.php
CCaptchaAction.php ----控制器使用
CCaptcha.php ---from表單使用
例子:
生成驗證碼的小物件 是在表單裡面新增的
<?php $this -> widget('CCaptcha',array('buttonLabel'=>'更換圖片')); ?>
載入驗證碼類的是在 控制器的
程式碼:
public function actions(){
return array(
'captcha'=>array(
'class'=>'system.web.widgets.captcha.CCaptchaAction',
'width'=>70,
'height'=>40,
'maxLength'=>'4',
'minLength'=>'4',
),
);
}
SESSIOn 修改字首:
StateKeyPrefix 的值
檔案位置:system.web.auth.CWebUser.php