检查该字段是否有值并打印该值

时间:2017-01-09 05:17:36

标签: php html drupal-7

我想检查具体字段是否有值然后打印值。我想检查字段' 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>

现在打印空帧不是空值

0 个答案:

没有答案