Array de tri PHP par valeur enfant

// PHP 7+
usort($arr, function ($a, $b) {
        return $a['key'] <=> $b['key'];
    });
Thoughtless Termite