从数据库中获取后如何检查字段是空的?

时间:2012-10-08 07:49:15

标签: php

我将图像存储在一列中,我只是想在表格中的图像字段为空时隐藏img标记。

$imgResult= explode('**',$resultArray['mediaGallery']);
if(empty($imgResult)===true){
    echo "<script type=\"text/javascript\">
          $(document).ready(function(e) {
              $('.display').css('display','none');
          });
          </script>";
}

2 个答案:

答案 0 :(得分:1)

我认为你应该检查if($imgResult == null)而不是empty。因为即使您从中选择的表字段中没有任何内容,该变量也不会为空;它将被设置为null。

答案 1 :(得分:0)

一种更好的方法: -

if( true == is_null( $imgResult ) ) {
}