“PHP -Sortierarray von Array nach Schlüssel” Code-Antworten

Sortieren Sie das Array nach Schlüsselwert in PHP

$inventory = array(

   array("type"=>"fruit", "price"=>3.50),
   array("type"=>"milk", "price"=>2.90),
   array("type"=>"pork", "price"=>5.43),

);
$price = array_column($inventory, 'price');
array_multisort($price, SORT_DESC, $inventory);
Fierce Flamingo

PHP -Sortierarray nach Schlüssel

  $weight = [
    'Pete' => 75, 
    'Benjamin' => 89,
    'Jonathan' => 101
  ];  	
  ksort($weight);
Xenophobic Xenomorph

PHP -Sortierarray von Array nach Schlüssel

$inventory = [
	['price' => 10.99, 'product' => 'foo 1'],
    ['price' => 5.99, 'product' => 'foo 2'],
  	['price' => 100, 'product' => 'foo 3'],
  
];

$price = array_column($inventory, 'price');

array_multisort($price, SORT_DESC, $inventory);
Matteoweb

Ähnliche Antworten wie “PHP -Sortierarray von Array nach Schlüssel”

Fragen ähnlich wie “PHP -Sortierarray von Array nach Schlüssel”

Weitere verwandte Antworten zu “PHP -Sortierarray von Array nach Schlüssel” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen