API15:JURI/current
From Joomla! Documentation
Description
Returns the URL for the request, minus the query
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax
current()
Returns
string
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
function current()
{
static $current;
// Get the current URL
if (!isset($current))
{
$uri = & JURI::getInstance();
$current = $uri->toString( array('scheme', 'host', 'port', 'path'));
}
return $current;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
Code Examples