0
我正在使用Yii框架和CActiveRecord模型的項目。Yii CActiveRecord「搜索」和搜索()
在所有的人都存在這樣的:
public function rules() {
return array(
//...
// The following rule is used by search().
// Please remove those attributes that should not be searched.
array(
'id, alias, code',
'safe', 'on'=>'search'
),
);
}
和一個名爲search()
方法。
問題 - 這是什麼,如果我不使用任何Zii/Gii /任何東西,我可以安全地刪除它嗎?我也不使用表格和批量分配。
我懷疑這是由Gii自動生成的,無論出於何種原因。我試着評論它,並沒有注意到任何問題,但也許我已經打破了一些東西。