Skip to content

Instantly share code, notes, and snippets.

@mssoylu
Last active April 18, 2020 22:23
Show Gist options
  • Save mssoylu/75cd96bc93cbf7e501759c70a6fffdd6 to your computer and use it in GitHub Desktop.
Save mssoylu/75cd96bc93cbf7e501759c70a6fffdd6 to your computer and use it in GitHub Desktop.
<?php
$arr = [
'car1' => [
'price' => 40,
'title' => 'car 3',
'brand' => 'VW'
],
'car2' => [
'price' => 30,
'title' => 'car 2',
'brand' => 'VW'
],
'car3' => [
'price' => 50,
'title' => 'car 1',
'brand' => 'VW'
]
];
$priceArr = array_column($arr, 'price');
array_multisort($priceArr, SORT_ASC, $arr);
echo '<pre>';
print_r($arr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment