Ive seen several posts dealing with multiple suffixes but none with multiple prefixes. For some reason when I execute the code below it will only return those with the comp prefix.
$test = glob($dir."/{comp*, sb-*}", GLOB_BRACE);
var_dump($test);
same with this
$test = glob($dir."/{comp, sb-}*", GLOB_BRACE);
var_dump($test);