$ip_address
$ip_address : string
IP address of the current user
Input Class
Pre-processes global input data for security
$security : \CI_Security
CI_Security instance
Used for the optional $xss_filter parameter that most getter methods have here.
__construct(\CI_Security $security) : void
Class constructor
Determines whether to globally enable the XSS processing and whether to allow the $_GET array.
\CI_Security | $security |
input_stream(string $index = NULL, boolean $xss_clean = FALSE) : mixed
Fetch an item from the php://input stream
Useful when you need to access PUT, DELETE or PATCH request data.
string | $index | Index for item to be fetched |
boolean | $xss_clean | Whether to apply XSS filtering |
set_cookie(string|array<mixed,mixed> $name, string $value = '', integer $expire, string $domain = '', string $path = '/', string $prefix = '', boolean $secure = NULL, boolean $httponly = NULL) : void
Set cookie
Accepts an arbitrary number of parameters (up to 7) or an associative array in the first parameter containing all the values.
string|array<mixed,mixed> | $name | Cookie name or an array containing parameters |
string | $value | Cookie value |
integer | $expire | Cookie expiration time in seconds |
string | $domain | Cookie domain (e.g.: '.yourdomain.com') |
string | $path | Cookie path (default: '/') |
string | $prefix | Cookie name prefix |
boolean | $secure | Whether to only transfer cookies via SSL |
boolean | $httponly | Whether to only makes the cookie accessible via HTTP (no javascript) |
get_request_header(string $index, boolean $xss_clean = FALSE) : string|null
Get Request Header
Returns the value of a single member of the headers class member
string | $index | Header name |
boolean | $xss_clean | Whether to apply XSS filtering |
The requested header on success or NULL on failure
_fetch_from_array( $array, mixed $index = NULL, boolean $xss_clean = FALSE) : mixed
Fetch from array
Internal method used to retrieve values from global arrays.
$array | ||
mixed | $index | Index for item to be fetched from $array |
boolean | $xss_clean | Whether to apply XSS filtering |