andyjimmy Posted March 2, 2006 Share Posted March 2, 2006 Hi everyone,My host has recently upgraded to PHP 5.0.4, which i love the new image manuipulation features, but sadly one of my sorting scripts no longer works. the script terminates... no error messages... no nothing[code]function DESC($a, $b) { return strcasecmp($b[1],$a[1]);}function ASC($a, $b) { return strcasecmp($a[1],$b[1]);}if ($dir=="DESC") usort($transport_info, 'DESC');else usort($transport_info, 'ASC');[/code]How can i make this compatible with PHP5, i have heard that there is something about it that won't return values from functions or something like that.Perhaps there is a work about way to get this going that works with both PHP4 and PHP5Thanks in advance for your help and advise Link to comment https://forums.phpfreaks.com/topic/3901-help-with-sorting-arrays-in-php5-script-works-in-431/ Share on other sites More sharing options...
khburres Posted March 4, 2006 Share Posted March 4, 2006 Code looks fine...you sure its a problem in the sort? Link to comment https://forums.phpfreaks.com/topic/3901-help-with-sorting-arrays-in-php5-script-works-in-431/#findComment-14226 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.