API16

API16:JFile/stripExt

From Joomla! Documentation

Description

Strips the last extension off a file name


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

Syntax

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

Returns

string The file name without the extension

Defined in

libraries/joomla/filesystem/file.php

Importing

jimport( 'joomla.filesystem.file' );

Source Body

function stripExt($file) {
        return preg_replace('#\.[^.]*$#', '', $file);
}


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

Examples

Code Examples