"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Sort an Associative Array by a Specific Column Value in PHP?

How Can I Sort an Associative Array by a Specific Column Value in PHP?

Posted on 2025-02-27
Browse:851

How Can I Sort an Associative Array by a Specific Column Value in PHP?

Sorting an Associative Array by Column Value

Given an array of associative arrays, the task is to sort the elements based on a specific column value. For instance, consider the following array:

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

The goal is to sort $inventory by the "price" column, resulting in:

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

Solution using array_multisort()

To achieve this, we can use the array_multisort() function. It allows sorting multiple arrays by multiple columns.

Here's an example:

$price = array();
foreach ($inventory as $key => $row) {
    $price[$key] = $row['price'];
}
array_multisort($price, SORT_DESC, $inventory);

Alternatively, using array_column() (available since PHP 5.5.0):

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

By sorting the $price array, we indirectly sort $inventory since they share the same keys.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3