Skip to content

Instantly share code, notes, and snippets.

@emre
Created April 27, 2010 15:08
Show Gist options
  • Save emre/380845 to your computer and use it in GitHub Desktop.
Save emre/380845 to your computer and use it in GitHub Desktop.
usort()'un guzel bir ozelligi
<?php
$a[] = array(
"name" => "emre",
"price" => 99,
);
$a[] = array(
"name" => "ali",
"price" => 15,
);
$a[] = array(
"name" => "ali",
"price" => 35,
);
$a[] = array(
"name" => "aai",
"price" => 19,
);
function sort_by_value($b, $c) {
return strcmp($b["price"], $c["price"]);
}
usort($a, "sort_by_value");
print_r($a);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment