(PHP 4, PHP 5, PHP 7)
is_bool — Détermine si une variable est un booléen
var
La variable à évaluer.
Retourne TRUE
si var
est un booléen,
FALSE
sinon.
Exemple #1 Exemple avec is_bool()
<?php
$a = false;
$b = 0;
// Si $a est un booléen, is_bool retournera true
if (is_bool($a) === true) {
echo "Oui, c'est un booléen.";
}
// Si $b n'est pas un booléen, is_bool retournera false
if (is_bool($b) === false) {
echo "Non, ce n'est pas un booléen.";
}
?>