NAME
	sort_array - sort an array through a specific sort function

SYNOPSIS
	mixed *sort_array(mixed *array, string sortfunc, string|object sortob)

DESCRIPTION
	Sort array calls 'sortfunc' in 'sortob' with two elements from the
	'array' as args at a time and the function returns true if arg1 is
	bigger than arg2 to sort lower to higher in the resulting array
	and the other way around.
