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
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.