yii 驗證碼不顯示圖片怎麼辦?
yii2中驗證碼的使用-圖片不顯示
推薦學習:yii框架
1.控制器中
public function actions() { return [ 'captcha' => [ 'class' => 'yii\captcha\CaptchaAction', 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, ], ]; }
2.模型中
要有一個驗證碼的欄位$verifyCode
3.檢視中
use yii\helpers\Html; use yii\widgets\ActiveForm; use yii\captcha\Captcha;
自動產生表單
#
頁面中驗證碼代碼
<?= $form->field($model, 'verifyCode')->widget(Captcha::className(), [ 'template' => '<div class="row"><div class="col-lg-3">{image}</div><div class="col-lg-6">{input}</div></div>', ]) ?>
控制器中的權限可能會導致驗證碼圖片不顯示,
public function behaviors()
# {
return [
'access' => [
1 Control '
#'only' => ['logout', 'signup','login'],
'rules' =># ' actions' => ['signup'],
## 'allow' =>;] ,
[
'allow' => true,
## 'roles' = > ['@'], ], 'verbs' => [ # 'class' => VerbFilter::className(), 'actions' => [# 'actions' => [# 'actions' => [#. post'], ],卷
以上是yii 驗證碼不顯示圖片怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!