I have the following array, it is currently created, sorted by entity_count (output by a query executed in cakephp - I only need the best entities), now I want to sort the array for Entity-> title.
I tried to do this with array_multisort , but could not. Is it possible?
Array ( [0] => Array ( [Entity] => Array ( [title] => Orange ) [0] => Array ( [entitycount] => 76 ) ) [1] => Array ( [Entity] => Array ( [title] => Apple ) [0] => Array ( [entitycount] => 78 ) ) [2] => Array ( [Entity] => Array ( [title] => Lemon ) [0] => Array ( [entitycount] => 85 ) ) )
source share