// $vote_table[index]['voter_meta']['name'] is the key to sort by.
usort( $vote_table, function( $a, $b ){
return ($a['voter_meta']['name'] == $b['voter_meta']['name'])
? 0
: ( ($a['voter_meta']['name'] < $b['voter_meta']['name'])
? -1
: 1
);
});
What is the error in the syntax?
You had problem with a bracket , here is the correct version of your code :