php multidimensional array ternary statement syntax

101 Views Asked by At
//  $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?

1

There are 1 best solutions below

0
On

You had problem with a bracket , here is the correct version of your code :

 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;

 });