<?php $array = [ 'Adolf', 'Doe', 'adept', 'Done', 'dear', 'adopt', 'Deer' ]; $startsWith = 'do'; usort( $array, fn($a, $b) => (stripos($a, $startsWith) !== 0) <=> (stripos($b, $startsWith) !== 0) ?: strcasecmp($a, $b) ); var_export($array);
You have javascript disabled. You will not be able to edit any code.