Skip to content

Instantly share code, notes, and snippets.

View aholstenson's full-sized avatar

Andreas Holstenson aholstenson

View GitHub Profile
@aholstenson
aholstenson / Sorting.php
Created September 12, 2012 10:05
PHP sorting class
<?php
/**
* Sorting functions designed to be combined to reach desired result.
*
* Examples:
* $array = array('c', 'a', 'b');
* Sorting::sort($array, Sorting.string());
*
* $array = array('b' => 2, 'a' => 1);