-1

我想在 div 之前检查变量值,以便如果变量为空,则隐藏处于 if 条件的 div,反之亦然。

例如:

<?php $var=has_post_thumbnail();
if(!empty($var)){ ?>
<div>//some code that is shown only if var has some value</div>
<?php } ?>
4

1 回答 1

0
<?php if(isset($var)) // or check for empty if you want that way{ ?>
    <div> yes variable is set </div>
<?php } else { ?>
    <div> variable not set division </div>
<?php } ?>
于 2012-09-12T08:00:43.983 回答