Variable handling 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

is_bool

(PHP 4, PHP 5)

is_bool 检测变量是否是布尔型

描述

bool is_bool ( mixed $var )

如果 varboolean 则返回 TRUE

Example #1 is_bool() 示例

<?php
$a 
false;
$b 0;

// 因为 $a 是布尔型,所以结果为真
if (is_bool($a)) {
    print 
"Yes, this is a boolean";
}

// 因为 $b 不是布尔型,所以结果为非真
if (is_bool($b)) {
    print 
"Yes, this is a boolean";
}
?>

参见 is_array()is_float()is_int()is_integer()is_string()is_object()


Variable handling 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程