我将图像存储在一列中,我只是想在表格中的图像字段为空时隐藏img标记。
$imgResult= explode('**',$resultArray['mediaGallery']);
if(empty($imgResult)===true){
echo "<script type=\"text/javascript\">
$(document).ready(function(e) {
$('.display').css('display','none');
});
</script>";
}
答案 0 :(得分:1)
我认为你应该检查if($imgResult == null)
而不是empty
。因为即使您从中选择的表字段中没有任何内容,该变量也不会为空;它将被设置为null。
答案 1 :(得分:0)
一种更好的方法: -
if( true == is_null( $imgResult ) ) {
}