<?php $array = [ [ 'project_id' => 1, 'earnest_money_due' => [ 'value' => 1000.00, 'currency' => 'USD', ], ], [ 'project_id' => 2, 'earnest_money_due' => [ 'value' => 200.00, 'currency' => 'USD', ], ], [ 'project_id' => 3, 'earnest_money_due' => [ 'value' => 900.00, 'currency' => 'USD', ], ], ]; array_multisort(array_map(fn($row) => $row['earnest_money_due']['value'], $array), $array); var_export($array);
You have javascript disabled. You will not be able to edit any code.