Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

PHP: Sorting an associative array (See related posts)

This basically sorts an associative array... somethin' like that.

$people = new Array();

$people[0]['id'] = 1;
$people[0]['name'] = "Dave";
$people[1]['id'] = 2;
$people[1]['name'] = "Alex";
$people[2]['id'] = 3;
$people[2]['name'] = "Chris";

function cmp($a, $b)
{
   return strcmp($a['name'], $b['name']);
}
usort($people, "cmp");

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts