51

可能重复:
如何通过内部键对多维数组进行
排序 如何在 php 中对数组的数组进行排序?

如何对数组进行排序,例如:$array[$i]['title'];

数组结构可能如下:

array[0] (
  'id' => 321,
  'title' => 'Some Title',
  'slug' => 'some-title',
  'author' => 'Some Author',
  'author_slug' => 'some-author'
);

array[1] (
  'id' => 123,
  'title' => 'Another Title',
  'slug' => 'another-title',
  'author' => 'Another Author',
  'author_slug' => 'another-author'
);

那么数据是根据数组中的标题字段以ASC 顺序显示的吗?

4

1 回答 1

130

usort为此目的明确构建的使用。

function cmp($a, $b)
{
    return strcmp($a["title"], $b["title"]);
}

usort($array, "cmp");
于 2012-04-03T19:28:39.140 回答