Sort theo key bất kỳ trong một array nhiều cấp key php
Mình có array sau: và muốn sắp xếp theo thứ tự tăng dần asc với key là league
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
Array ( [0] => Array ( [fixture] => Array ( [id] => 818635 [referee] => [timezone] => Asia/Ho_Chi_Minh ) [league] => Array ( [id] => 162 [name] => Primera Division [country] => Costa-Rica [logo] => https://media.api-sports.io/football/leagues/162.png [flag] => https://media.api-sports.io/flags/cr.svg [season] => 2021 [round] => Clausura - 13 ) ) [1] => Array ( [fixture] => Array ( [id] => 818635 [referee] => [timezone] => Asia/Ho_Chi_Minh ) [league] => Array ( [id] => 164 [name] => Primera Division [country] => Costa-Rica [logo] => https://media.api-sports.io/football/leagues/162.png [flag] => https://media.api-sports.io/flags/cr.svg [season] => 2021 [round] => Clausura - 13 ) ) [2] => Array ( [fixture] => Array ( [id] => 818635 [referee] => [timezone] => Asia/Ho_Chi_Minh ) [league] => Array ( [id] => 163 [name] => Primera Division [country] => Costa-Rica [logo] => https://media.api-sports.io/football/leagues/162.png [flag] => https://media.api-sports.io/flags/cr.svg [season] => 2021 [round] => Clausura - 13 ) ) ) |
1 2 3 4 5 |
//với $response là array của phía trên usort($response, function($a, $b) { return strcmp($a['league']['id'], $b['league']['id']); }); //Kết quả $response sẽ được sort theo thứ tự tăng dần của league |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress