Jump to content

Help with sorting arrays in PHP5, script works in 4.3.1


andyjimmy

Recommended Posts

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 PHP5

Thanks in advance for your help and advise

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.