Created
June 24, 2010 12:47
-
-
Save alkavan/451405 to your computer and use it in GitHub Desktop.
sksort
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* A function to sort data array element by one or two sub keys, both directions | |
*/ | |
function sksort(&$array, $subkey = "id", $subkey2 = null ,$sort_ascending=false) | |
{ | |
if (count($array)) | |
$temp_array[key($array)] = array_shift($array); | |
foreach($array as $key => $val){ | |
$offset = 0; | |
$found = false; | |
foreach($temp_array as $tmp_key => $tmp_val) | |
{ | |
if(!$found and strtolower($val[$subkey]) > strtolower($tmp_val[$subkey])) | |
{ | |
$temp_array = array_merge( | |
(array)array_slice($temp_array,0,$offset), array($key => $val), | |
array_slice($temp_array,$offset)); | |
$found = true; | |
} | |
elseif(!$found | |
and $subkey2 and strtolower($val[$subkey]) == strtolower($tmp_val[$subkey]) | |
and strtolower($val[$subkey2]) > strtolower($tmp_val[$subkey2])) | |
{ | |
$temp_array = array_merge( | |
(array)array_slice($temp_array,0,$offset), | |
array($key => $val), array_slice($temp_array,$offset)); | |
$found = true; | |
} | |
$offset++; | |
} | |
if(!$found) $temp_array = array_merge($temp_array, array($key => $val)); | |
} | |
if ($sort_ascending) $array = array_reverse($temp_array); | |
else $array = $temp_array; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment