我想检查具体字段是否有值然后打印值。我想检查字段' field_perspective_video'这是在视频嵌入字段和打印框架。如果该字段没有值,那么需要打印图像字段
<div class="imageAlign">
<div class="perspectivecontetImage">
<?php if(!empty($fields['field_perspective_video']))
{
?>
<iframe src="<?php echo strip_tags($fields['field_perspective_video']->content);?>" frameborder="0" allowfullscreen></iframe>
<?php
}
else{
echo 'hello'.strip_tags($fields['field_perspective_image']->content);
}?>
</div>
</div>
现在打印空帧不是空值