All pastes #2124693 Raw Edit

Anonymous

public php v1 · immutable
#2124693 ·published 2012-03-05 22:07 UTC
rendered paste body
usort($mydata, buildSorter(3));function buildSorter($key) {	return function ($a, $b) use ($key) { 		return strnatcmp($a[$key], $b[$key]); 	}; }