Skip to content

Instantly share code, notes, and snippets.

@th3d0g
Created February 22, 2016 21:32
Show Gist options
  • Save th3d0g/d1767895658a6d2c22ed to your computer and use it in GitHub Desktop.
Save th3d0g/d1767895658a6d2c22ed to your computer and use it in GitHub Desktop.
Get Mime Type without FileInfo extension.
// Fix; check mime type without FileInfo extension.
if (function_exists('finfo_file')) {
$mime = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $path);
} else {
$infFil=getimagesize($path);
$mime = $infFil["mime"];
}
echo $mime;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment