How to Get File Extension in PHP

PHP function to get file extension:

function get_file_extension( $file )
{
    return pathinfo($file, PATHINFO_EXTENSION);
}

It returns the file extension, i.e. mp3.

References:

PHP: pathinfo – Manual

More Related Posts