PHP 布尔类型是最简单的类型。布尔值表示真值,它可以是真或假。
语法
要指定布尔文字,需要使用常量 true
或 false
。两者都不区分大小写。
<?php
$foo = True; // assign the value TRUE to $foo
?>
通常,返回布尔值的运算符的结果将传递给控制结构。
<?php
// == is an operator which tests equality and returns a boolean
if ($action == "show_version") {
echo "this is a test";
}
// this is not necessary...
if ($show_separators == TRUE) {
echo "<hr>\n";
}
// ...because this can be used with exactly the same meaning:
if ($show_separators) {
echo "<hr>\n";
}
?>