(PHP 4, PHP 5)
is_bool() détermine si la variable donnée est un booléen.
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, ceci sera vraiif (is_bool($a)) { echo "Oui, C'est un booléen.";}// Si $b n'est pas un booléen, ceci sera fauxif (is_bool($b)) { echo "Oui, C'est un booléen.";}?>
Hosting by: Hurra Communications GmbHGenerated: 2007-01-26 18:02:08