本文实例讲述了yii2中添加验证码的实现方法。分享给大家供大家参考,具体如下:
首先,在模型中添加验证码字段:
PHP;">
public function rules(){
return ['verifyCode','captcha'],}
其次,可以在函数attributeLabels中添加前台页面中验证码的字段名称:
'Verification Code',];
}
PHP;">
use yii\captcha\Captcha;
= $form->field($model,'verifyCode')->widget(Captcha::className(),[
'template' => '
',]) ?>
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。