(no version information, might be only in CVS)
input_get_args -- Gets multiple variables from outside PHP and optionally filters themWarnung |
Diese Funktion ist EXPERIMENTELL. Das Verhalten, der Funktionsname und alles Andere was hier dokumentiert ist, kann sich in zukünftigen PHP-Versionen ohne Ankündigung ändern. Seien Sie gewarnt und verwenden Sie diese Funktion auf eigenes Risiko. |
This function is useful for retrieving a large amount of values without repetitively calling input_get().
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.
One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, INPUT_ENV, INPUT_SESSION, or INPUT_DATA.
Data to filter. Used if the type parameter is set to INPUT_DATA.
An array containing the values of the requested variables on success, or FALSE if an error occurred.
Zurück | Zum Anfang | Weiter |
input_filters_list | Nach oben | input_get |