filter_var_array

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

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

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

Parameters

array

An array with string keys containing the data to filter.

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, or false on failure. An array value will be false if the filter fails, or null if the variable is not set.

Related Functions

Example of filter_var_array

Show all examples for filter_var_array

PHP Version:


Function filter_var_array:

Data Filtering Functions

Most used PHP functions