API16:JURI/current
From Joomla! Documentation
Description
Returns the URL for the request, minus the query.
Syntax
static current()
Returns
string
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
public static function current()
{
static $current;
// Get the current URL.
if (!isset($current))
{
$uri = &JURI::getInstance();
$current = $uri->toString(array('scheme', 'host', 'port', 'path'));
}
return $current;
}
Examples
Code Examples