Yii2 查询条件中 in 的用法 [ 2.0 版本 ]
$this->find()->where(['in', 'product_id', $ids])->count();
小白小
注册时间:2016-04-22
最后登录:2021-02-18
在线时长:16小时42分
最后登录:2021-02-18
在线时长:16小时42分
- 粉丝7
- 金钱310
- 威望30
- 积分770
$this->find()->where(['in', 'product_id', $ids])->count();
共 2 条评论
也可以
$this->find()->where(['product_id' => $ids])->count();
在哪呢?你这是初稿吗?先写个标题,然后慢慢来吗?
额。你没看到嘛
@小白小 你是后来编辑了吧?
$this->find()->where(['product_id', $ids])->count();
@刘师傅 e 那没准。我自己都忘了