|
1
2
3
4
5
6
7
8
9
10
11
|
<?php $testVar=0;
if(empty($testVar))
{
echo 'msg:true';
}
else{
echo 'msg:false';
}
?> |
输出结果为 msg:true
|
1
2
3
4
5
6
7
8
9
10
11
|
<?php $testVar=0;
if(empty($testVar))
{
echo 'msg:true';
}
else{
echo 'msg:false';
}
?> |
输出结果为 msg:true
相关文章: