API17

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.  


{{subst:Description:JRequest::_cleanArray}}
 


<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]]
{{subst:SeeAlso:JRequest::_cleanArray}}
 


===User contributed notes===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JRequest::_cleanArray
category=JRequest::_cleanArray
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*

Latest revision as of 03:35, 25 March 2017

Joomla 11.1 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.
  • Returns
  • Defined on line 512 of libraries/joomla/environment/request.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples