yii中 filterwhere 和where的区别
1 回答
翻阅古今
TA贡献1780条经验 获得超5个赞
带filter的操作内部会过滤掉为空的条件
null
''
空数组
比如查询条件:
orFilterWhere([
'status' => 0,
'name' => '',
'age' => null,
'sex' => []
])
最后去掉为空的组成查询条件,依据规则就剩下status = 0这个条件了
- 1 回答
- 0 关注
- 715 浏览
添加回答
举报
0/150
提交
取消