Skip to content

Instantly share code, notes, and snippets.

@EdwardIII
Last active December 22, 2015 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EdwardIII/dd0c8e732e1c74cd1792 to your computer and use it in GitHub Desktop.
Save EdwardIII/dd0c8e732e1c74cd1792 to your computer and use it in GitHub Desktop.
<?php
$array = array(
array(
'person' => array(
'name' => 'Beavis',
'age' => 13,
),
),
array(
'person' => array(
'name' => 'Cornholio',
'age' => 101
),
),
array(
'person' => array(
'name' => 'Butthead',
'age' => 15,
),
)
);
# Is there a builtin to sort these people by their age descending?
var_dump($array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment