This is a sample of the array of elemnts to sort:

$items = 
    array
      0 => 
        object(stdClass)[8]
          public 'id' => string '110' (length=3)
          public 'brand_id' => string '18' (length=2)
            array
              0 => string ' OT-708' (length=7)
          public 'failed' => null
          public 'diff' => null
      1 => 
        object(stdClass)[9]
          public 'id' => string '161' (length=3)
          public 'brand_id' => string '18' (length=2)

So, let's say I want to sort by brand_id. This is my usort callback function:

function _compare($itemA, $itemB){

    if ($itemA->brand_id == $itemB->brand_id) {

        return 0; 
    }
    else{
        return strcmp($itemA->brand_id, $itemB->brand_id); //just an example...
    }

}

And when I do usort($items, '_compare'); var_dump($items); nothing happens. Any clues on how to troubleshoot this?

--UPDATE--

Ok, I've simplified the problem to this:

function cmp($itemA, $itemB){
    return -1;
}

if (usort($items, "cmp"))
                echo 'I just sorted!';
else echo 'Cant sort!';

It always prints 'Cant print!'

link|improve this question

2  
brand_name doesn't even exist in those objects. – Matthew Jun 21 '11 at 2:50
2  
Are you printing the return of usort or $items? because usort only returns a bool on success / false otherwise. – GWW Jun 21 '11 at 2:51
Sorry, guys, I corrected the example. – ign Jun 21 '11 at 2:52
1  
OK, I figured it out... My mistake for thinking I had error reporting ON. All this code, including function cmp is inside a class, so I was getting this and didn't realize "( ! ) Warning: usort() expects parameter 2 to be a valid callback, function 'cmp' not found or invalid function name in ..." – ign Jun 21 '11 at 3:13
1  
@ign , nice you could now insert your problem solution as an answer and accept it for future readers that could have a similar problem. – foobar Jun 21 '11 at 3:16
show 6 more comments
feedback

1 Answer

Finally, I discovered the source of this error. The problem was that this code was inside a class.

If that's your case, then you should call usort this way:

usort($items, array("MyClass", "compare_method"));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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