为了账号安全,请及时绑定邮箱和手机立即绑定

如何在 Find() 的 where() 中添加 orderBy()?

如何在 Find() 的 where() 中添加 orderBy()?

PHP
桃花长相依 2022-07-09 18:05:57
如何添加带有 where 条件的 orderBy()?$floor_data = Floors::find()->where(['building_id' => $id])->orderBy->(['floor_no' => SORT_DESC])->all();这给了我一个语法错误说语法错误,意外的 '(',需要标识符 (T_STRING) 或变量 (T_VARIABLE) 或 '{' 或 '$'
查看完整描述

1 回答

?
炎炎设计

TA贡献1808条经验 获得超4个赞

额外的->导致错误:


$floor_data = Floors::find()

    ->where(['building_id' => $id])

    //   Remove ↓↓   

    // ->orderBy->(['floor_no' => SORT_DESC])

    ->orderBy(['floor_no' => SORT_DESC])

    ->all();


查看完整回答
反对 回复 2022-07-09
  • 1 回答
  • 0 关注
  • 130 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信