is_bool

(PHP 4, PHP 5, PHP 7)

is_bool �������Ƿ��Dz�����

����

is_bool ( mixed $var ) : bool

��� var �� boolean �򷵻� TRUE��

Example #1 is_bool() ʾ��

<?php
$a 
false;
$b 0;

// ��Ϊ $a �Dz����ͣ����Խ��Ϊ��
if (is_bool($a)) {
    print 
"Yes, this is a boolean";
}

// ��Ϊ $b ���Dz����ͣ����Խ��Ϊ����
if (is_bool($b)) {
    print 
"Yes, this is a boolean";
}
?>

�μ� is_array()��is_float()��is_int()��is_integer()��is_string() �� is_object()��