filter Flashcards

1
Q

bool filter_has_var ( int $type , string $variable_name )

A

Vérifie si une variable d’un type spécifique existe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

int filter_id ( string $filtername )

A

Retourne l’identifiant d’un filtre nommé

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

mixed filter_input_array ( int $type [, mixed $definition [, bool $add_empty = true ]] )

A

Cette fonction est utile pour récupérer plusieurs valeurs sans avoir à appeler plusieurs fois la fonction filter_input().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

mixed filter_input ( int $type , string $variable_name [, int $filter = FILTER_DEFAULT [, mixed $options ]] )

A

Récupère une variable externe et la filtre

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

array filter_list ( void )

A

Retourne une liste de tous les filtres supportés

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

mixed filter_var_array ( array $data [, mixed $definition [, bool $add_empty = true ]] )

A

Cette fonction est utile pour récupérer plusieurs valeurs sans appeler plusieurs fois la fonction filter_var().

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

mixed filter_var ( mixed $variable [, int $filter = FILTER_DEFAULT [, mixed $options ]] )

A

Filtre une variable avec un filtre spécifique

How well did you know this?
1
Not at all
2
3
4
5
Perfectly