如何按字母顺序获取数组键

时间:2017-06-28 07:11:51

标签: php arrays sorting

这是我的代码。我希望按字母顺序获取 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;
  }
}

1 个答案:

答案 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;
    }
}