web-dev-qa-db-fra.com

PHP Trier le tableau par champ?

Duplicata possible:
comment trier un tableau multidimensionnel par une clé interne
Comment trier un tableau de tableaux en php?

Comment puis-je trier un tableau comme: $array[$i]['title'];

La structure du tableau peut ressembler à:

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');

Ainsi, les données sont affichées dans l'ordre ASC basé sur le champ de titre dans le tableau?

34
Michael Ecklund

Utilisez usort qui est construit explicitement à cet effet.

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

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