PHP -Sortierarray nach spezifischem Schlüssel
usort($array, function ($a, $b) {
return ($a['specific_key'] < $b['specific_key']) ? -1 : 1;
});
Matteoweb
usort($array, function ($a, $b) {
return ($a['specific_key'] < $b['specific_key']) ? -1 : 1;
});
//php 7+
usort($inventory, function ($item1, $item2) {
return $item1['price'] <=> $item2['price'];
});
$price = array_column($inventory, 'price');
array_multisort($price, SORT_DESC, $inventory);