举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > PHP Boolean

PHP Boolean

2023-04-17 23:18 PHP教程

 PHP Boolean

PHP教程 - PHP Boolean

布尔值保持真或假。 在幕后,布尔是整数。

假值

此外,PHP将以下值视为 false :

  • The literal value false
  • The integer zero (0)
  • The float zero ( 0.0 )
  • An empty string ( " " )
  • The string zero ( "0" )
  • An array with zero elements
  • The special type null (including any unset variables)
  • A SimpleXML object that is created from an empty XML tag

所有其他值在布尔上下文中被视为true。

我们可以为布尔类型变量赋值true或false值。


<?PHP
    $bool = true;
    print "Bool is set to $booln";
    $bool = false;
    print "Bool is set to $booln";
?>

上面的代码生成以下结果。



实施例2

在第二个if语句中,我们比较整数值到布尔值。


<?PHP
$a=100;
if($a==100) {
    echo "the variable equals 1!n";
}

if($a==true) {
   echo "the variable is true!";
}
?>

上面的代码生成以下结果。



阅读全文
以上是编程学为你收集整理的 PHP Boolean全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部