codice:
function is_type($file_type, $require_file_type) {

  if(is_array($require_file_type)) {

     return in_array(strtolower($file_type), $require_file_type);

  } else {
  
      return strtolower($file_type) == strtolower($require_file_type);

  }

}
prova, dovrebbe andare...

ciao