3v4l.org

run code in 300+ PHP versions simultaneously
<?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_column($array, 'earnest_money_due'), $array); var_export($array);

preferences:
30.25 ms | 406 KiB | 5 Q