我有多個陣列結構如下排序第四元素上並保持相同的密鑰值在PHP
array (
'Mexico' =>
array (
'Regular_Club' =>
array (
'2015-02' =>
array (
'cost' => 41479.8,
'signups' => 3891,
'share' => 16241.46,
),
),
'Sweepstakes' =>
array (
'2015-02' =>
array (
'cost' => 1186736.04,
'signups' => 280850,
'share' => 468069.14,
),
),
),
)
我要作爲排序依據現場成本這個數組降序排列。我嘗試過uasort,但是沒有運氣。結果應該在下面。
Result:
array (
'Mexico' =>
array (
'Sweepstakes' =>
array (
'2015-02' =>
array (
'cost' => 1186736.04,
'signups' => 280850,
'share' => 468069.14,
),
),
'Regular_Club' =>
array (
'2015-02' =>
array (
'cost' => 41479.8,
'signups' => 3891,
'share' => 16241.46,
),
),
),
)
在此先感謝。
2015-02是不固定的值會根據每個月改變,因此不能使用該名稱,並且連名字regular_club或抽獎活動,他們沒有固定的名稱。它會在其他月份,其他國家改變。 – user1648204