_fetch_from_array() protected method

Internal method used to retrieve values from global arrays.
protected _fetch_from_array ( &$array, mixed $index = NULL, boolean $xss_clean = NULL ) : mixed
$index mixed Index for item to be fetched from $array
$xss_clean boolean Whether to apply XSS filtering
return mixed
Example #1
0
 public function fetch_from_array($array, $index = '', $xss_clean = FALSE)
 {
     return parent::_fetch_from_array($array, $index, $xss_clean);
 }