如何添加带有 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();
- 1 回答
- 0 关注
- 130 浏览
添加回答
举报
0/150
提交
取消