API16

API16:JFile/getExt

From Joomla! Documentation

Revision as of 01:39, 25 March 2017 by JoomlaWikiBot (talk | contribs) (preparing for archive only)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

Gets the extension of a file name


<! removed transcluded page call, red link never existed >

Syntax

getExt($file)
Parameter Name Default Value Description
$file $file The file name

Returns

string The file extension

Defined in

libraries/joomla/filesystem/file.php

Importing

jimport( 'joomla.filesystem.file' );

Source Body

function getExt($file) {
        $dot = strrpos($file, '.') + 1;
        return substr($file, $dot);
}


<! removed transcluded page call, red link never existed >

Examples

Code Examples