本文实例讲述了Yii2简单实现给表单添加验证码的方法。分享给大家供大家参考,具体如下:
控制器SiteController:
class SiteController extends Controller
{
// ...
public function actions()
{
return [
// ...
'captcha' => [
'class' => 'yii\captcha\CaptchaAction',
'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null,
],
];
}
// ...
}
?>
页:
[1]