(PHP 4, PHP 5)
is_bool — 変数が boolean であるかを調べる
評価する変数。
var が boolean である場合に TRUE 、それ以外の場合に FALSE を返します。
例1 is_bool() の例
<?php
$a = false;
$b = 0;
// $a は boolean なので、これは true です
if (is_bool($a)) {
echo "Yes, this is a boolean";
}
// $b は boolean ではないので、これは true ではありません
if (is_bool($b)) {
echo "Yes, this is a boolean";
}
?>