Tag Archives: php get file extension

PHP Tutorial : Get file extension

With the next three lines of php code you will be able to get a file extension. <?php $file = “somefile.gif”; $ext = end(explode(‘.’, $file)); print “Your file extension is $ext”; ?>

Posted in Short PHP Functions | Tagged , , , , , | 6 Comments