API16:JRequest/set
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
Sets a request variable.
Syntax
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
libraries/joomla/environment/request.php
Importing
jimport( 'joomla.environment.request' );
Source Body
public static function set($array, $hash = 'default', $overwrite = true) { foreach ($array as $key => $value) { self::setVar($key, $value, $hash, $overwrite); } }
[Edit See Also] SeeAlso:JRequest/set
Examples
<CodeExamplesForm />
