我的Yii2模型中的未定义变量

时间:2017-07-12 13:01:56

标签: variables model yii2 undefined

运行我的模型类时出现未定义变量错误:

.*

有没有办法在函数中读取accountTypeFlag?

1 个答案:

答案 0 :(得分:0)

public $accountTypeFlag;

...

public function getSecondType() {
      if ($this->accountTypeFlag == 1) {
        ...
      } elseif ($this->accountTypeFlag == 2) {
        ...
      } elseif ($this->accountTypeFlag == 3) {
        ...
      }     
}