filter_input_array

PHP 5 >= 5.2.0, PHP 7, PHP 8
filter_input_array - Gets external variables and optionally filters them
Manual
Code Examples

filter_input_array(
     int$type,
     [array|int$options = FILTER_DEFAULT],
     [bool$add_empty = true]
): array|false|null

This function is useful for retrieving many values without repetitively calling filter_input.

Parameters

type

One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, or INPUT_ENV.

options

An array defining the arguments. A valid key is a string containing a variable name and a valid value is either a filter type, or an array optionally specifying the filter, flags and options. If the value is an array, valid keys are filter which specifies the filter type, flags which specifies any flags that apply to the filter, and options which specifies any options that apply to the filter. See the example below for a better understanding.

This parameter can be also an integer holding a filter constant. Then all values in the input array are filtered by this filter.

add_empty

Add missing keys as null to the return value.

Return Values

An array containing the values of the requested variables on success. If the input array designated by type is not populated, the function returns null if the FILTER_NULL_ON_FAILURE flag is not given, or false otherwise. For other failures, false is returned.

An array value will be false if the filter fails, or null if the variable is not set. Or if the flag FILTER_NULL_ON_FAILURE is used, it returns false if the variable is not set and null if the filter fails. If the add_empty parameter is false, no array element will be added for unset variables.

Notes

Note:

There is no REQUEST_TIME key in INPUT_SERVER array because it is inserted into the $_SERVER later.

Related Functions

Example of filter_input_array

Show all examples for filter_input_array

PHP Version:


Function filter_input_array:

Data Filtering Functions

Most used PHP functions