我得到了$ actions數組和$ actions_used數組。對PHP中另一個數組值進行排序
$ actions_used看起來像這樣:
array(1) {
[2]=>
string(1) "18"
[5]=>
string(1) "33"
}
$行動看起來是這樣的:
array(3) {
[1]=>
string(9) "Withdraw"
[2]=>
string(13) "Deposit"
[5]=>
string(10) "Blabla"
}
我想基於這是在$ actions_used價值$行動進行排序。
正確的輸出將是$操作:
array(3) {
[5]=>
string(9) "Blabla"
[2]=>
string(13) "Deposit"
[1]=>
string(10) "Withdraw"
}
爲什麼?由於數組鍵5,「Blabla」具有最大值「33」,然後出現具有值18的數組鍵「2」,並最終出現數組鍵1,具有0的「Withdraw」(無值)
如何才能做到這一點?
這是行得通的,但是剩下的動作是不是在actions_used?他們不在$ newArray中 – Karem