<?php $array = [ ['name' => 'foo'], ['bar' => 'foo'], ]; usort($array, function ($a, $b) { return strcmp($a['name'], $b['nope']); }); echo 'after calling usort:'.PHP_EOL.PHP_EOL; var_dump($array);
You have javascript disabled. You will not be able to edit any code.