Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: is_bool - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

is_buffer" width="11" height="7"/> <is_binary
Last updated: Thu, 03 May 2007

view this page in

is_bool

(PHP 4, PHP 5)

is_bool — 変数が boolean であるかを調べる

説明

bool is_bool ( mixed $var )

指定した変数が boolean であるかどうかを調べます。

パラメータ

var

評価する変数。

返り値

varboolean である場合に TRUE 、それ以外の場合に FALSE を返します。

例 2484. 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";
}
?>

参考

is_float()
is_int()
is_string()
is_object()
is_array()



add a note add a note User Contributed Notes
is_bool
21-Apr-2006 08:12
Small caveat to rh's post: back in PHP 3, "0" would be considered non-empty (i.e., empty would return false), even though (bool) on "0" would also evaluate to false; thus, they would not be complete opposites for someone using PHP 3.
rh at richardhoward dot net
23-May-2005 03:17
punkpuke is wrong here; what he means to say is that empty($x) is the opposite of (bool)$x.  is_bool($x) returns true where $x === false.

is_buffer" width="11" height="7"/> <is_binary
Last updated: Thu, 03 May 2007
 
 
show source | credits | sitemap | contact | advertising | mirror sites