WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

php示例代码之empty函数

Posted on 2016-07-09 13:42  WebEnh  阅读(293)  评论(0)    收藏  举报
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