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 Quote Link to comment 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? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.