Input
extends CI_Input
in package
AbstractYes
CI_Input extension.
Table of Contents
Methods
- delete() : mixed
- Fetch an item from the DELETE array.
- put() : mixed
- Fetch an item from the PUT array.
Methods
delete()
Fetch an item from the DELETE array.
public
delete([mixed|null $index = null ][, bool|null $xssClean = null ]) : mixed
Parameters
- $index : mixed|null = null
-
(optional) Index for item to be fetched from $array. Default is null.
- $xssClean : bool|null = null
-
(optional) Whether to apply XSS filtering. Default is null.
Return values
mixed —DELETE data.
put()
Fetch an item from the PUT array.
public
put([mixed|null $index = null ][, bool|null $xssClean = null ]) : mixed
Parameters
- $index : mixed|null = null
-
(optional) Index for item to be fetched from $array. Default is null.
- $xssClean : bool|null = null
-
(optional) Whether to apply XSS filtering. Default is null.
Return values
mixed —PUT data.