标签:条件判断 判断 str 数组 block als 不为 lse false
整型的0 在判断条件时为false
<?php
$str = 0;
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
浮点型的 0.000... 都为 false,只要其中有一个不为0的数字即为true
<?php
$str = 0.00;
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
空数组在作为判断条件时,为false
<?php
$str = [];
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
null 在作为判断条件时,为false
<?php
$str = null;
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
空字符串 在作为条件判断时,为false
<?php
$str = ‘‘;
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
注意:如果不是空字符串,哪怕是个空格,此时就为true
字符串‘0‘ 在作为条件判断时,为false
<?php
$str = ‘0‘;
if ($str) {
echo ‘It is true!‘;
} else {
echo ‘It is false!‘;
}
输出结果为: It is false!
标签:条件判断 判断 str 数组 block als 不为 lse false
原文地址:https://www.cnblogs.com/yongzhenye/p/9175198.html