API16

JURI/setQuery

From Joomla! Documentation

< API16:JURI
Revision as of 17:46, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Sets the query to a supplied string in format: foo=bar&x=y <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Description:JURI/setQuery|Edit D...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The "API16" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Description[edit]

Sets the query to a supplied string in format: foo=bar&x=y

[Edit Descripton]

Template:Description:JURI/setQuery

Syntax[edit]

setQuery($query)
Parameter Name Default Value Description
$query string) $query The query string.

Defined in[edit]

libraries/joomla/environment/uri.php

Importing[edit]

jimport( 'joomla.environment.uri' );

Source Body[edit]

public function setQuery($query)
{
        if (is_array($query))
        {
                $this->_vars = $query;
        } else {
                if (strpos($query, '&amp;') !== false)
                {
                        $query = str_replace('&amp;','&',$query);
                }
                parse_str($query, $this->_vars);
        }

        //empty the query
        $this->_query = null;
}

[Edit See Also] Template:SeeAlso:JURI/setQuery

Examples[edit]

<CodeExamplesForm />