这是我的代码。我希望按字母顺序获取 location_name , location_id 和 id 希望与每个 location_name相关
in modal
defaultRequestConfig
在视图中
function get_exam_locations_for_view() {
$d = $this->db->get('exm_exam_location');
if ($d) {
return $d;
}
}
答案 0 :(得分:1)
您可以使用它来根据键对数组进行排序。
$fruits = array("d"=>"lemon", "a"=>"orange", "b"=>"banana", "c"=>"apple");
ksort($fruits);
并且您还可以在查询本身中对结果进行排序。
function get_exam_locations_for_view() {
$d = $this->db->select('exm_exam_location')->orderBy('exm_exam_location', 'asc')->get();
if ($d) {
return $d;
}
}