I have a usort function with a single line: return 0.
I tried to use it on an Array of stdClass objects, and it changes
their order, how is that possible?

link|improve this question

77% accept rate
Show some code - – Pekka Sep 2 '11 at 13:09
tried it with uasort as well, still changed the order – Asaf Sep 2 '11 at 13:12
pastebin.com/JPvvxJaC - change the uasort to usort, it will still change the order – Asaf Sep 2 '11 at 13:15
feedback

2 Answers

The property you assume is called stability: A stable sorting algorithm will not change the order of elements that are equal.

php's sorting functions are not stable (because non-stable sorts may be slightly faster). From the documentation of usort:

If two members compare as equal, their order in the sorted array is undefined.

If you want a stable sorting algorithm, you must implement it yourself.

link|improve this answer
feedback

It's because that function means "I really don't care how they are sorted, they are equal to me". With this simple sample I receive reversed array:

function sortaaa($a,$b) {return 0;}
$array = array(1,2,3,4,5);
usort($array,"sortaaa");
var_dump($array);
//prints array(5) { [0]=> int(5) [1]=> int(4) [2]=> int(3) [3]=> int(2) [4]=> int(1) }

So it looks like PHP loops the array in reverse order in function usort. So, note the usort manual states that

If two members compare as equal, their order in the sorted array is undefined.

link|improve this answer
what would you suggest as a solution? – Asaf Sep 2 '11 at 13:18
That depends on what do you mean by solution. What do you want to achieve? – J0HN Sep 2 '11 at 13:19
@Asaf If stability is such an issue, roll out your own sorting routine. Added a link to one to my answer. – phihag Sep 2 '11 at 13:20
feedback

Your Answer

 
or
required, but never shown

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