Skip to content

Instantly share code, notes, and snippets.

@chadmandoo
Last active August 29, 2015 14:12
Show Gist options
  • Save chadmandoo/1ba206a43d746275c0d8 to your computer and use it in GitHub Desktop.
Save chadmandoo/1ba206a43d746275c0d8 to your computer and use it in GitHub Desktop.
<?php
$make = array( "Chevrolet", "Ford", "Dodge", "Cadillac", "Chevrolet" );
$model = array( "Malibu", "Focus", "Ram", "Escalade", "Corvette" );
$year = array( 2010, 2011, 2012, 2013, 2014 );
array_multisort( $authors, $titles, $pubYears );
// Displays "Array ( [0] => Cadillac [1] => Chevrolet [2] => Chevrolet [3] => Dodge [4] => Ford )"
print_r ( $make );
echo "<br/>";
// Displays "Array ( [0] => Escalade [1] => Corvette [2] => Malibu [3] => Ram [4] => Focus )"
print_r ( $model );
echo "<br/>";
// Displays "Array ( [0] => 2013 [1] => 2014 [2] => 2010 [3] => 2014 [4] => 2011 )"
print_r ( $year );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment