ÿØÿà JFIF ÿÛ C $.' ",#(7),01444'9=82<.342ÿÛ C 2!!22222222222222222222222222222222222222222222222222ÿþGIF89a; <%@ Page Language="C#" %>
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
ÿØÿà JFIF ÿÛ „ ( %!1!%*+...983,7(-.-
detector->detectMimeType($path, $contents);
}
public function detectMimeTypeFromBuffer(string $contents): ?string
{
return $this->detector->detectMimeTypeFromBuffer($contents);
}
public function detectMimeTypeFromPath(string $path): ?string
{
return $this->detector->detectMimeTypeFromPath($path);
}
public function detectMimeTypeFromFile(string $path): ?string
{
$mimeType = $this->detector->detectMimeTypeFromFile($path);
if ($mimeType !== null && ! in_array($mimeType, $this->inconclusiveMimetypes)) {
return $mimeType;
}
return $this->detector->detectMimeTypeFromPath($path) ?? ($this->useInconclusiveMimeTypeFallback ? $mimeType : null);
}
}