Skip to content

Instantly share code, notes, and snippets.

@raphaeldealmeida
Created February 15, 2012 21:50
Show Gist options
  • Save raphaeldealmeida/1839226 to your computer and use it in GitHub Desktop.
Save raphaeldealmeida/1839226 to your computer and use it in GitHub Desktop.
utilização clojure
<?php
$cores = array(
array('cor' => 'verde'),
array('cor' => 'vermelho'),
array('cor' => 'amarelo')
);
usort($cores, function($a, $b){
return strcmp($a['cor'], $b['cor']);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment