web-dev-qa-db-ja.com

PHPフィールドで配列をソートしますか?

可能性のある複製:
内部キーで多次元配列をソートする方法
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順序で表示され、titleフィールドに基づいてアレイ?

34
Michael Ecklund

usort を使用します。これは、この目的のために明示的に構築されます。

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

usort($array, "cmp");
96
meagar