Advertisement
szymcio93

sort wzrost

Jun 9th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. usort($listaStartowa, function ($v1, $v2) {
  2. if ($v1[‘wzrost’'] == $v2['wzrost']) {
  3. return 0;
  4. }
  5. return $v1['wzrost'] < $v2['wzrost'] ? -1 : 1;
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement