Sort array alphabetically
This function, used in conjunction with the usort() function, allows you to sort a n array alphabetically, e.g. usort($feeds, “cmp”);
<?php
// Function to sort array alphabetically
function cmp($a, $b) {
return strnatcasecmp( $a[’TITLE’], $b[’TITLE’] );
}
?>
