Have an account? Sign in
Login  Register  Facebook
This Page is Under Construction! - If You Want To Help Please Send your CV - Advanced Web Core (BETA)
[Edit] Get file extension

Finding the file extention in the file name

function file_extension($filename)
{
    $path_info = pathinfo($filename);
    return $path_info['extension'];
}
//Maybe faster:
function file_extension($filename)
{
return end(explode(".", $filename));
}