This is a question you can read everywhere on the web with various answers :

$ext = end(explode('.', $filename));
$ext = substr(strrchr($filename, '.'), 1);
$ext = substr($filename, strrpos($filename, '.') + 1);
$ext = preg_replace('/^.*\.([^.]+)$/D', '$1', $filename);
$exts = split("[/\\.]", $filename);
$n = count($exts)-1;
$ext = $exts[$n];

etc.

However, there is always "the best way" and it should be on stackoverflow.

link|improve this question

5  
who said there's always "the best way?" – hop Oct 6 '08 at 14:12
11  
@hop: e-satis did – Andreas Bonini Jun 9 '10 at 9:53
1  
And when I say it... – e-satis Jun 16 '10 at 12:36
Source of question and answer: cowburn.info/2008/01/13/get-file-extension-comparison – salathe Mar 26 '11 at 13:37
feedback

4 Answers

up vote 206 down vote accepted

People from other scripting languages always think theirs is better because they have a built in function to do that and not PHP (I am looking at pythonistas right now :-)).

In fact, it does exist, but few people know it. Meet pathinfo :

$ext = pathinfo($filename, PATHINFO_EXTENSION);

This is fast, efficient, reliable and built in. Pathinfo can give you others info, such as canonical path, regarding to the constant you pass to it.

Enjoy

link|improve this answer
Why didn't you just put the answer in the question!? – 999 Oct 6 '08 at 11:07
22  
Because it's written is the overflow FAQ do it this way. – e-satis Oct 6 '08 at 11:12
2  
I wish I could vote this up twice. I can't tell you how much code I've been able to replace using pathinfo – Mark Biek Oct 23 '08 at 17:20
So do I. That's why I put it here ! – e-satis Oct 29 '08 at 19:26
1  
Whaddaya know, turns out there is a best way. – Steve Dec 23 '10 at 3:40
feedback

pathinfo - http://uk.php.net/manual/en/function.pathinfo.php

An example...

$path_info = pathinfo('/foo/bar/baz.bill');

echo $path_info['extension']; // "bill"
link|improve this answer
This one is "the best way" – vaske Oct 6 '08 at 11:04
feedback

E-satis response is the correct way to determine the file extension.

Alternatively, instead of relying on a files extension, you could use the fileinfo (http://us2.php.net/fileinfo) to determine the files MIME type.

Here's a simplified example of processing an image uploaded by a user:

// Code assumes necessary extensions are installed and a successful file upload has already occurred

// Create a FileInfo object
$finfo = new FileInfo(null, '/path/to/magic/file');

// Determine the MIME type of the uploaded file
switch ($finfo->file($_FILES['image']['tmp_name'], FILEINFO_MIME) {
    case 'image/jpg':
        $im = imagecreatefromjpeg($_FILES['image']['tmp_name']);
    break;

    case 'image/png':
        $im = imagecreatefrompng($_FILES['image']['tmp_name']);
    break;

    case 'image/gif':
        $im = imagecreatefromgif($_FILES['image']['tmp_name']);
    break;
}
link|improve this answer
feedback

You only need: Example:

strrchr('image.two.jpg', '.')

You get -> .jpg!

link|improve this answer
13  
-1. This is a typical beginer mistake. You think that all files have extensions, and all directories don't have dots in their names. Try your method on config files you meet very often in GNU/Linux such as '~/.ssh/id_dsa' and you'll see it fails. It will consider ".ssh/id_dsa" to be the extension while in fact what you want is an empty string since there is no extension. – e-satis Dec 1 '10 at 12:47
1  
Since pathinfo doesn't work over the file system, it can still be fooled: pathinfo('/root/myApp-1.2.3-i686',PATHINFO_EXTENSION) => 3-i686. Interestingly, even a final slash causes this to happen: pathinfo('/root/myApp-1.2.3-i686/',PATHINFO_EXTENSION) => 3-i686. From what I can see, the algorithm is quite simplistic. Though I'd rather use pathinfo, the above function works well with an additional fix: $n=strrchr(trim($NAME,'/\\'),'.'); if(strpos('\\',$n)!==false && strpos('/',$n)!==false)$n=''; echo $n; – Christian Mar 23 '11 at 10:11
@Christian Sciberras What do you expect it do in your version number example? 1) It allows directories to have a file extension too. Problem? 2) How do you suppose a function will see a difference between your example and one that legitimately has a "3-i686" extension? If you wanted a special case for names with version numbers, you'd need a pattern, which would surely mess up as soon as someone was using a non-standard version string format. In short, as as far the world is concerted, the file extension of that directory is 3-i686. – nitro2k01 Nov 1 '11 at 23:06
@nitro2k01 Directories never have an extension. In my example, I expect it to work as PHP's pathinfo() does, ie no file extension. Remember, a folder is not a file, especially when the path in question didn't specify a file name anyway (my example was pathname not a filename). Now if you'd rather have a misnamed function with unpredictable behaviour (since without my fix, it leaked to the previous path components), be my guest. – Christian Nov 2 '11 at 18:19
@Christian Sciberras I am talking about pathinfo and not Alex' crappy code, of course. If I'm getting your point, you don't want pathinfo('/root/myApp-1.2.3-i686',PATHINFO_EXTENSION) to return 3-i686? Because it's a directory? What do you want pathinfo('/etc/rc.d',PATHINFO_EXTENSION) to return, for example? /etc/rc.d is a directory for BSD style init scripts and I think the d qualifies as a file extension, or path extension if you will. (Note that neither pathinfo nor PATHINFO_EXTENSION says "file" anywhere.) – nitro2k01 Nov 2 '11 at 20:05
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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