API16:JRequest/set
From Joomla! Documentation
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);
}
}
Examples
Code Examples