Variable handling Funzioni
PHP Manual

is_bool

(PHP 4, PHP 5)

is_bool Verifica se una variabile è di tipo boolean

Descrizione

bool is_bool ( mixed $var )

Verifica se la variabile data sia di tipo boolean

Elenco dei parametri

var

La variabile da valutare.

Valori restituiti

Restituisce TRUE se var è di tipo boolean, FALSE in caso contrario.

Esempi

Example #1 Esempi di is_bool()

<?php
$a 
false;
$b 0;

// Poiché $a è booleana, questo restituirà true
if (is_bool($a) === true) {
    echo 
"Yes, this is a boolean";
}

// Poiché $b non è booleana, questo restituirà false
if (is_bool($b) === false) {
    echo 
"No, this is not a boolean";
}
?>

Vedere anche:


Variable handling Funzioni
PHP Manual