API15:JURI/getQuery
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
Returns flat query string
Syntax
getQuery($toArray=false)
| Parameter Name | Default Value | Description |
|---|---|---|
| $toArray | false |
Returns
string Query string
Defined in
libraries/joomla/environment/uri.php
Importing
jimport( 'joomla.environment.uri' );
Source Body
function getQuery($toArray = false) { if($toArray) { return $this->_vars; } //If the query is empty build it first if(is_null($this->_query)) { $this->_query = $this->buildQuery($this->_vars); } return $this->_query; }
[Edit See Also] SeeAlso:JURI/getQuery
Examples
<CodeExamplesForm />
