| API | Package | Subpackage | Class | Method | Reference | Last reviewed | Doc status |
|---|---|---|---|---|---|---|---|
Home |
Joomla.Framework |
Environment |
JURI |
parse |
parse() |
Never | Work in Progress |
Parses a given URI and populates the class fields.
boolean parse ( $uri )
| $uri | string | is a string containing the URI string to parse. |
Example
$uri = new JURI(); $uri->parse( 'https://forum.joomla.org/index.php?topic=46226&action=new' ); echo "Query String: " . $uri->getQueryString();
might produce:
Result
Query String: topic=46226&action=new