Skip to content

Instantly share code, notes, and snippets.

View jadiagaurang's full-sized avatar
🎯
Focusing

Gaurang Jadia jadiagaurang

🎯
Focusing
View GitHub Profile
@betweenbrain
betweenbrain / gist:6440817
Created September 4, 2013 18:25
PHP usort anonymous function alphabetize
usort($this->item->tags, function ($a, $b) {
return strcmp(strtolower($a->name), strtolower($b->name));
});