usort( $bla, function( $a, $b )
{
return strcmp( $a->title, $b->title );
});
is returning my list in DESC order rather than ASC order... How would I go about tweaking this?
I tried:
usort( $bla, function( $a, $b )
{
return ( strcmp( $a->title, $b->title ) < 0 ) ? $a->title : $b->title;
});