2012-07-26 177 views
0

得到最大的麻煩我有這些數組,我需要做的是讓單獨的每個數組檢查[total],然後得到bigest 5數字。我一直在嘗試,但我的頭即將爆炸,請幫助!從陣列鍵php

Array ( 
[0] => Array ([id] => 50 [faceid] => 1508653983 [fname] => Mario [lname] => Zelaya [email] => Email [handicap] => Handicap [province] => Province [country] => Country [gender] => male [hand] => [shot1] => Shot #1 [shot2] => Shot #2 [shot3] => Shot #3 [shot4] => Shot #4 [shot5] => Shot #5 [news] => 1 [total] => 0) 

[1] => Array ([id] => 49 [faceid] => 1665349411 [fname] => Yair [lname] => Villar [email] => [email protected] [handicap] => lefthanded [province] => Buenos Aires [country] => Argentina [gender] => male [hand] => RH [shot1] => 200 [shot2] => 98 [shot3] => 98 [shot4] => 98 [shot5] => 98 [news] => 1 [total] => 592) 

[2] => Array ([id] => 48 [faceid] => 1665349411 [fname] => Yair [lname] => Villar [email] => [email protected] [handicap] => lefthanded [province] => Buenos Aires [country] => Argentina [gender] => male [hand] => RH [shot1] => 500 [shot2] => 250 [shot3] => 80 [shot4] => 30 [shot5] => 20 [news] => 1 [total] => 88000) 

) 

我該怎麼做這些與PHP。請幫忙!!

+5

那麼......你試了一下? – Tchoupi 2012-07-26 21:05:14

+1

嘿,不要讓人們告訴你左手是一個障礙! – SupremeDud 2012-07-26 21:06:00

+0

以及即時嘗試建立一個函數來取消設置everythin我不需要,只留下[total]和[userid],然後嘗試比較[total]和排序數組desc,然後只打印最後5個 – 2012-07-26 21:10:20

回答

1
function getTop5(array $data, $high2low = true) 
{ 
    $total = array(); 

    foreach ($data as $val) 
     $total[$val["id"]] = $val["total"]; 

    asort($total); 
    return $high2low ? array_reverse($total) : $total; 
} 

$data = array(
     array("id" => 1, "total" => 25), 
     array("id" => 2, "total" => 32), 
     array("id" => 3, "total" => 21), 
     array("id" => 4, "total" => 28) 
     ); 

print_r(getTop5($data)); 
+0

完美的兄弟,非常感謝你:)你讓我的一天大聲笑,現在的事情是它只返回總沒有ID :(大聲笑,但生病了弄明白:)謝謝你真的很好幫助 – 2012-07-26 21:41:09

+0

@YairVillar你的歡迎;)...你可以使用array_keys()來獲得這個數組的鍵,你知道鍵是ID ... – 2012-07-26 21:45:41

2

嘗試使用PHP的usort函數來排序您的數組:

function cmp($a, $b) 
{ 
    if ($a['total'] == $b['total']) 
     return 0; 

    return ($a['total'] > $b['total']) ? -1 : 1; 
} 

usort($yourarray, "cmp"); 

if (count($yourarray) > 5) 
    $sortedArray = array_slice($yourarray, 0, 5); 
else 
    $sortedArray = $yourarray; 

你最終將與得分最高的5個元素的數組。如果輸入數組中的元素少於5個,則最終將獲得與輸入數組中元素數量相同的元素。

+1

您可以縮短您的' cmp()'返回$ b ['total'] - $ a ['total']'。 – 2012-07-26 21:44:02

+0

同意,但爲了清楚起見,cmp的擴展版本有點容易理解:) – Wouter 2012-07-26 21:49:14