jQuery manipulation html
La fonction is_bool() permet de déterminer si une variable est de type booléen, la fonction is_bool() retourne true si la variable est un booléen
(PHP 4, PHP 5)
La fonction is_bool() détermine si une variable est un booléen
Syntaxe :
is_bool($var )
La fonction is_bool ( ) détermine si la variable donnée est un booléen.
L’argument $var c’est la variable à évaluer.
La fonction is_bool ( )retourne TRUE si la variable $var est un booléen, FALSE sinon.
Exemple :
Exemple : Copier le code
<?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."; } echo '<br />'; // Si $b n'est pas un booléen, is_bool retournera false if (is_bool($b) === false) { echo "Oui, c'est un booléen."; } ?>
Cours precedent: |
Cours suivant: |