Le filtre FILTER_VALIDATE_BOOLEAN valide les valeurs en tant qu'options booléennes.
Nom : "booléen"
Numéro d'identification : 258
Valeurs de retour possibles :
Renvoie VRAI si « 1 », « vrai », « activé » et « oui ».
Renvoie FALSE si "0", "false", "off" et "no".
Sinon, renvoie NULL.
<?php$var="yes";var_dump(filter_var($var, FILTER_VALIDATE_BOOLEAN));?>
La sortie du code ressemble à ceci :
booléen (vrai)