Last active
August 29, 2015 14:12
-
-
Save chadmandoo/058763340c9caafe3b9e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$myBooks = array( | |
array( | |
"title" => "The Grapes of Wrath", | |
"author" => "John Steinbeck", | |
"pubYear" => 1939 | |
), | |
array( | |
"title" => "Travels With Charley", | |
"author" => "John Steinbeck", | |
"pubYear" => 1962 | |
), | |
array( | |
"title" => "The Trial", | |
"author" => "Franz Kafka", | |
"pubYear" => 1925 | |
), | |
array( | |
"title" => "The Hobbit", | |
"author" => "J. R. R. Tolkien", | |
"pubYear" => 1937 | |
), | |
array( | |
"title" => "A Tale of Two Cities", | |
"author" => "Charles Dickens", | |
"pubYear" => 1859 | |
), | |
); | |
array_multisort( $myBooks ); | |
echo "<pre>"; | |
print_r( $myBooks ); | |
echo "</pre>"; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment