API16:JURI/ construct
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Constructor. You can pass a URI string to the constructor to initialise a specific URI.
Syntax
__construct($uri=null)
| Parameter Name | Default Value | Description |
|---|---|---|
| $uri | null | $uri The optional URI string |
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
public function __construct($uri = null) { if (!is_null($uri)) { $this->parse($uri); } }
[Edit See Also] SeeAlso:JURI/ construct
Examples
<CodeExamplesForm />
