<?php $array = [ 'Adolf', 'Doe', 'adept', 'Done', 'dear', 'adopt', 'Deer' ]; $startsWith = 'do'; array_multisort( array_map(fn($v) => stripos($v, $startsWith) !== 0, $array), $array, SORT_STRING | SORT_FLAG_CASE, $array ); var_export($array);
You have javascript disabled. You will not be able to edit any code.