Advertisement
Guest User

nibbasinparis

a guest
Oct 16th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. for($i = 0; $i < count($jogadores); $i++) {
  2.  
  3. for($x = 0; $x < count($jogadores); $x++) {
  4. if(array_key_exists($x, $jogadores))
  5. if($jogadores[$i][1][0] < $jogadores[$x][1][0]) {
  6.  
  7. $temp = $jogadores[$i];
  8. $jogadores[$i] = $jogadores[$x];
  9. $jogadores[$x] = $temp;
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement