<?php
$orderDoc = array("ORT", "TRI", "CONT", "RMI");
$FindDoc= array("RMI0000191","ORT0000379","ORT0000391","ORT0000392","ORT0000390","CONT0000274","CONT0000275","RMI0000192","ORT0000391");
$result =[];
foreach($orderDoc as $doc){
$temp = preg_grep("/^". preg_quote($doc) . "/", $FindDoc);
sort($temp);
$result = array_merge($result, $temp);
}
var_dump($result);
preferences:
24.79 ms | 408 KiB | 5 Q