I am trying to figure out the quickest way to sort this array (i.e. performance wise).
I want to sort this alphabetically by the first key in each array...
$results = array(array('foo', '=', '1'), array('dog', '!=', '5'), array('apple', '<', '4'));
After the sort shoud look like...
$results = array(array('apple', '<', '4'), array('dog', '!=', '5'), array('foo', '=', '1'));
Any ideas?