API16

JInstallerHelper/getFilenameFromURL

From Joomla! Documentation

< API16:JInstallerHelper

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Gets a file name out of a url


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

Syntax[edit]

getFilenameFromURL($url)
Parameter Name Default Value Description
$url $url URL to get name from

Returns[edit]

mixed String filename or boolean false if failed

Defined in[edit]

libraries/joomla/installer/helper.php

Importing[edit]

jimport( 'joomla.installer.helper' );

Source Body[edit]

function getFilenameFromURL($url)
{
        if (is_string($url))
        {
                $parts = explode('/', $url);
                return $parts[count($parts) - 1];
        }
        return false;
}


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

Examples[edit]

Code Examples[edit]