how can i check if a file is an mp3 file or image file, other than check each possible extension?
|
feedback
|
|
You can identify image files using To find out more about MP3 and other audio/video files, I have been recommended | |||||||||||
feedback
|
|
Native way to get the mimetype: For PHP < 5.3 use mime_content_type() Alternatives to get the MimeType are exif_imagetype and getimagesize, but these rely on having the appropriate libs installed. In addition, they will likely just return image mimetypes, instead of the whole list given in magic.mime. While
| |||||||
feedback
|
|
You can use FileInfo module which is built into PHP since 5.3. If you are using a PHP version less than PHP 5.3, you can install it as a PECL extension: After installation the PECL extension: http://pecl.php.net/package/fileinfo PHP Documentation: http://www.php.net/manual/en/book.fileinfo.php | |||
|
feedback
|
Output:
Or better use finfo_file() the other way is deprecated. | |||||||||||
feedback
|
|
You could use finfo like this:
or if you have problems with finfo not being installed, or the mime magic file just not working (it works correctly on 3 out of our 4 servers - all identical OS and PHP installs) - then try using Linux's native file (don't forget to sanitise the filename though: in this example, I know the filename can be trusted as it's a PHP temporary filename in my test code):
Then just pass the mime file type to a switch statement like:
| |||
|
feedback
|
|
To find the mime type of a file I use the following wrapper function:
| |||
|
feedback
|