how can i check if a file is an mp3 file or image file, other than check each possible extension?

link|improve this question

feedback

7 Answers

up vote 11 down vote accepted

You can identify image files using getimagesize.

To find out more about MP3 and other audio/video files, I have been recommended php-mp4info getID3().

link|improve this answer
are you saying that i should check if a file is an image or not using getimagesize something like : if(!getimagesize(path)){print 'this file is not an image!';} ? getimagesize(); returns false if the file is not an image? – kmunky Jan 5 '10 at 14:39
1  
+1 for this answer... the only way to be sure an image is an image is to use a library (in this case there are built in ones for images) that actually opens the file and parses it like you are suggesting. This way you prevent somebody renaming an .XLS to .GIF and uploading it. – TravisO Jan 5 '10 at 14:43
@kmunky: exactly. Check out the manual link to see what image types the function recognizes. – Pekka Jan 5 '10 at 16:15
i use this to check if a uploaded file is really a image: $tempFile = $_FILES['image']['tmp_name']; $image = getimagesize($tempFile); if ($image['mime']!=='image/jpeg'){ echo "error"; return; } – robertdd May 2 '10 at 18:05
feedback

Native way to get the mimetype:

For PHP < 5.3 use mime_content_type()
For PHP > 5.3 use finfo_fopen()

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 mime_content_type is removed from PHP5.3, it works fine below that version. E_STRICT won't even raise a notice about it being deprecated. If you don't want to bother about what is available on your system, just wrap all four functions into a proxy method that delegates the function call to whatever is available, e.g.

function getMimeType($filename)
{
    $mimetype = false;
    if(function_exists('finfo_fopen')) {
        // open with FileInfo
    } elseif(function_exists('getimagesize')) {
        // open with GD
    } elseif(function_exists('exif_imagetype')) {
       // open with EXIF
    } elseif(function_exists('mime_content_type')) {
       $mimetype = mime_content_type($filename);
    }
    return $mimetype;
}
link|improve this answer
The PHP docs say right on the first line that this function has been depreciated. – TravisO Jan 5 '10 at 14:40
@TravisO: Deprecated in favor of finfo_open. And that is not natively available before 5.3. Given that the other two methods to get the mimetype rely on GD and Exif, which are not necessarily enabled, using mime_content_type is the only native way to do it. – Gordon Jan 5 '10 at 14:46
Depreciated? I had a lot of money in that function! – Steve Apr 26 at 6:52
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 finfo_file function will return file information.

PECL extension: http://pecl.php.net/package/fileinfo

PHP Documentation: http://www.php.net/manual/en/book.fileinfo.php

link|improve this answer
feedback

try mime_content_type()

<?php
echo mime_content_type('php.gif') . "\n";
echo mime_content_type('test.php');
?> 

Output:

image/gif

text/plain

Or better use finfo_file() the other way is deprecated.

link|improve this answer
I am curious why this got a downvote? It's only deprecated as of 5.3 – Gordon Jan 5 '10 at 14:41
The PHP docs say right on the first line that this function has been depreciated. – TravisO Jan 5 '10 at 14:41
right, that's why i'm asking you – kmunky Jan 5 '10 at 14:43
His question specifically says check the file type besides just checking the file extension, which is all mime_content_type does, it's basically a built in array of extensions, it has no idea what the file really is. – TravisO Jan 5 '10 at 21:50
Depreciated? "Invest in gold", I said, but they told me I was in on the ground floor: put your money in PHP functions, they said. I'm sorry I listened. – Steve Apr 26 at 6:54
feedback

You could use finfo like this:

$mime = finfo_open(FILEINFO_MIME, $path_to_mime_magic_file);
if ($mime ===FALSE) {
    throw new Exception ('Finfo could not be run');
}
$filetype = finfo_file($mime, $filename);
finfo_close($mime);

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):

ob_start();
system('file -i -b '.$filename);
$output = ob_get_clean();
$output = explode("; ", $output);
if (is_array($output)) {
     $filetype = trim($output[0]);
}

Then just pass the mime file type to a switch statement like:

switch (strtolower($filetype)) {
            case 'image/gif':
                return '.gif';
                break;
            case 'image/png':
                return '.png';
                break;
            case 'image/jpeg':
                return '.jpg';
                break;
            case 'audio/mpeg':
                return '.mp3';
                break;
}
return null;
link|improve this answer
feedback

To find the mime type of a file I use the following wrapper function:

function Mime($path)
{
    $result = false;

    if (is_file($path) === true)
    {
        if (function_exists('finfo_open') === true)
        {
            $finfo = finfo_open(FILEINFO_MIME_TYPE);

            if (is_resource($finfo) === true)
            {
                $result = finfo_file($finfo, $path);
            }

            finfo_close($finfo);
        }

        else if (function_exists('mime_content_type') === true)
        {
            $result = preg_replace('~^(.+);.*$~', '$1', mime_content_type($path));
        }

        else if (function_exists('exif_imagetype') === true)
        {
            $result = image_type_to_mime_type(exif_imagetype($path));
        }
    }

    return $result;
}
link|improve this answer
feedback

getimageinfo is best to find images . Check if return type is false .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.