vote up 0 vote down star

We wrote some code involving usort which works fine on our development systems (PHP 5.2.8), but are experiencing a problem on our live systems (PHP 5.2.0):

// Sort by distance
usort($locations, 'Interpolator::sortByDistance');

calls the method (within the same class Interpolator):

private static function sortByDistance($a, $b) {
    $return = 0;
    if($a['distance'] > $b['distance']) {
        $return = 1;
    } else if ($a['distance'] < $b['distance']) {
        $return = -1;
    }
    return $return;
}

On our live systems, this returns a completely arbitrarily sorted array, the original order is disturbed, but still not sorted by distance.

I cannot find any reference to a PHP bug fixed between 5.2.0 and 5.2.8 relevant to this problem.

Where might this problem be coming from? Can I fix this short of writing a sorting function myself?

flag

Does the string 'Interpolator::sortByDistance' work as a callback in all PHP versions? I've always used the convention array ('Iterpolator', 'sortByDistance') for static method callbacks. – nickohrn Feb 18 at 16:15
It's a PHP 5.2.3+ feature. – chaos Feb 18 at 16:17
@chaos - Thanks... didn't know that. – nickohrn Feb 18 at 16:30

1 Answer

vote up 3 vote down check

The only think I can think of is that you should be using this:

usort($locations, array('Interpolator', 'sortByDistance'));
link|flag
Thanks, but like chaos commented on my question, that's a 5.2.3-feature. – christian studer Feb 18 at 16:32
Umm, wait, that actually worked... – christian studer Feb 18 at 16:34
Nice. Guess they broke the support somewhere along the road to 5.8.0. – chaos Feb 18 at 16:35
Oops, didn't see the question comments. 5.8.0 doesn't exist - I guess you meant 5.2.0 on the server, so before 'Interpolator::sortByDistance' style was added. – Greg Feb 18 at 16:39
@chaos: I just assumed 5.8.0 was a typo and he meant 5.2.0. 5.2.8 is the latest version of PHP. – R. Bemrose Feb 18 at 16:39
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.