JRequest:: cleanArray: Difference between revisions
From Joomla! Documentation
m clean up |
m preparing for archive only |
||
| Line 4: | Line 4: | ||
Adds an array to the GLOBALS array and checks that the GLOBALS variable is not being attacked. | Adds an array to the GLOBALS array and checks that the GLOBALS variable is not being attacked. | ||
<source lang="php"> | <source lang="php"> | ||
| Line 38: | Line 38: | ||
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Environment|Environment]] | * {{JVer|11.1}} Subpackage [[API17:Subpackage_Environment|Environment]] | ||
* [[API17:JRequest::_cleanArray|Other versions of JRequest::_cleanArray]] | * [[API17:JRequest::_cleanArray|Other versions of JRequest::_cleanArray]] | ||
===User contributed notes=== | ===User contributed notes=== | ||
=== Code Examples === | |||
<dpl> | <dpl> | ||
noresultsheader=\n | noresultsheader=\n | ||
category=JRequest::_cleanArray | category=JRequest::_cleanArray | ||
namespace=CodeExample | |||
category=MethodExample | category=MethodExample | ||
include=* | include=* | ||
Latest revision as of 03:35, 25 March 2017
JRequest::_cleanArray
Description
Adds an array to the GLOBALS array and checks that the GLOBALS variable is not being attacked.
public static function _cleanArray (
&$array
$globalise=false
)
| Parameter | Type | Default | Description |
|---|---|---|---|
| &$array | array | $array Array to clean. | |
| $globalise | boolean | false | True if the array is to be added to the GLOBALS. |
See also
JRequest::_cleanArray source code on BitBucket
Class JRequest
Subpackage Environment- Other versions of JRequest::_cleanArray
User contributed notes
Code Examples