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?
feedback
|
|
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
If you want a stable sorting algorithm, you must implement it yourself. | |||
|
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:
So it looks like PHP loops the array in reverse order in function
| |||||||
feedback
|