API16

JInstallerHelper/getFilenameFromURL

From Joomla! Documentation

< API16:JInstallerHelper
Revision as of 17:36, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Gets a file name out of a url <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

[Edit Descripton]

Template:Description:JInstallerHelper/getFilenameFromURL

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;
}

[Edit See Also] Template:SeeAlso:JInstallerHelper/getFilenameFromURL

Examples[edit]

<CodeExamplesForm />