Answers for "php reverse sort associative array by key"

PHP
10

php sort array by key

$weight = [
    'Pete' => 75, 
    'Benjamin' => 89,
    'Jonathan' => 101
  ];  	
  ksort($weight);
Posted by: Guest on December-04-2019
0

sort array php by key

$price = array_column($inventory, 'price'); //price is a key for the sort
array_multisort($price, SORT_DESC, $inventory);
Posted by: Guest on August-31-2021

Code answers related to "php reverse sort associative array by key"

Browse Popular Code Answers by Language