整合了smarty3,想过这种(当然不行的
function init() {
parent::init();
$this->captobj = new CaptchaAction(yii::$app->controller->id, $this);
$this->_params['captcha_session_code'] = $this->captobj->getVerifyCode();
}
这种可以,不过id随便取似乎不太好。。。
function init() {
parent::init();
$this->captobj = new CaptchaAction(1111, $this);
$this->_params['captcha_session_code'] = $this->captobj->getVerifyCode();
}
试试这样写: