0
我使用Gii工具生成了名爲vast_table
的表的搜索模型。 但是,我在Gii生成的模型中有一個語法錯誤,這是完全正確的。 錯誤是:yii2中Gii生成的搜索模型中的語法錯誤
PHP Parse Error – yii\base\ErrorException
syntax error, unexpected ']'
我的搜索模式是這樣的:
$query->andFilterWhere(['like', 'Ad', $this->Ad])
->andFilterWhere(['like', 'Collapse', $this->Collapse])
->andFilterWhere(['like', 'CloseLinear', $this->CloseLinear])
->andFilterWhere(['like', 'Skip', $this->Skip])
->andFilterWhere(['like', 'Played10%', $this->Played10%])
->andFilterWhere(['like', 'Played30%', $this->Played30%])
->andFilterWhere(['like', 'Played40%', $this->Played40%])
->andFilterWhere(['like', 'Played60%', $this->Played60%]);
錯誤指向到最後四行。我該怎麼做,請幫忙。