/ Published in: PHP
searching for a date sort function I found: http://slevy1.wordpress.com/2010/06/30/sorting-date-strings-in-php/ and built my codeigniter helper
call : $arrSortedDates = bubbleSort( $unsorted ); (previous->helper autoload)
call : $arrSortedDates = bubbleSort( $unsorted ); (previous->helper autoload)
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
function swapValues2( $array, $dex, $dex2 ) { return $array; } } function bubbleSort( $array) { { for( $in = $out + 1;$in < $size;$in++) { { $array = swapValues2($array, $out, $in); } } } return $array; } } /* End of file my_bubblesort_helper.php */ /* Location: ./system/application/helpers/my_bubblesort_helper.php */