CaptchaAction.php 409 B

12345678910111213141516171819202122
  1. <?php
  2. namespace common\components;
  3. use yii\web\Response;
  4. class CaptchaAction extends \yii\captcha\CaptchaAction
  5. {
  6. /**
  7. * 默认验证码刷新页面不会自动刷新
  8. */
  9. public function run()
  10. {
  11. ob_clean();
  12. $this->setHttpHeaders();
  13. \Yii::$app->response->format = Response::FORMAT_RAW;
  14. return $this->renderImage($this->getVerifyCode(true));
  15. }
  16. }