JFile/getExt: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
Line 40: | Line 40: | ||
===Examples=== | ===Examples=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=getExt | category=getExt | ||
category=JFile | category=JFile | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* |
Latest revision as of 01:39, 25 March 2017
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