API16

JRequest/set

From Joomla! Documentation

< API16:JRequest
Revision as of 17:46, 22 March 2010 by Doxiki (talk | contribs) (New page: ===Description=== Sets a request variable. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> ...)
(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 a request variable.

[Edit Descripton]

Template:Description:JRequest/set

Syntax[edit]

static set($array, $hash= 'default', $overwrite=true)
Parameter Name Default Value Description
$array An associative array of key-value pairs.
$hash 'default' The request variable to set (POST, GET, FILES, METHOD).
$overwrite true If true and an existing key is found, the value is overwritten, otherwise it is ignored.

Defined in[edit]

libraries/joomla/environment/request.php

Importing[edit]

jimport( 'joomla.environment.request' );

Source Body[edit]

public static function set($array, $hash = 'default', $overwrite = true)
{
        foreach ($array as $key => $value) {
                self::setVar($key, $value, $hash, $overwrite);
        }
}

[Edit See Also] Template:SeeAlso:JRequest/set

Examples[edit]

<CodeExamplesForm />