是否有一種簡單的方法來對具有用於此任務的可變數組的數組進行排序? 例如:PHP - 使用另一個陣列對數組進行排序
$fruits [
'Apple' => '12',
'Cherry' => '10',
'Lemon' => '34',
'Peach' => '6'
]
$order [
1 => 'Peach',
2 => 'Other',
3 => 'Lemon',
4 => 'Other2',
5 => 'Apple',
6 => 'Cherry',
7 => 'Other3'
]
我想退掉這類型的數組:
$ordered_fruits [
'Peach' => '6',
'Lemon' => '34',
'Apple' => '12',
'Cherry' => '10'
]
見陣列的這個例子結合功能可能會幫助 http://www.w3schools.com/php/showphp。 asp?filename = demo_func_array_combine –
沒有排序,只是搜索並創建一個新陣列。 –