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?
Utilisez usort
qui est construit explicitement à cet effet.
function cmp($a, $b)
{
return strcmp($a["title"], $b["title"]);
}
usort($array, "cmp");