I have the following object array:
array (
0 => MyObject::__set_state(array(
'id' => '1176',
'value' => 'Oranges',
)),
1 => MyObject::__set_state(array(
'id' => '1178',
'value' => 'Bananas',
)),
2 => MyObject::__set_state(array(
'id' => '1179',
'value' => 'grapes',
)),
)
I want to sort ascending by value so I use the following:
usort($myObjectArray, function($a, $b) {
return strcmp($a->value, $b->value);
});
But I'm nothing is sorted?