getAttributeText('energy_rating_two');?>-6ren">
gpt4 book ai didi

PHP - 如果为空值

转载 作者:可可西里 更新时间:2023-10-31 23:43:41 25 4
gpt4 key购买 nike

我有以下编码:

<div class="product-top-icons">
<div class="energy-rating-1"><img src="http://www.justhome.co/skin/frontend/default/just2011/images/assets/<?php echo $_product->getAttributeText('energy_rating_one');?>.jpg"></div>
<div class="energy-rating-2"><img src="http://www.justhome.co/skin/frontend/default/just2011/images/assets/<?php echo $_product->getAttributeText('energy_rating_two');?>.jpg"></div>
<div class="energy-rating-3"><img src="http://www.justhome.co/skin/frontend/default/just2011/images/assets/<?php echo $_product->getAttributeText('energy_rating_three');?>.jpg"></div>
<div class="guarantee-icon"><img src="http://www.justhome.co/skin/frontend/default/just2011/images/assets/<?php echo $_product->getAttributeText('warranty');?>.jpg"></div>
</div>

我想在其中添加一个 if 语句,基本上是为了说明以下内容:

如果 'energy_rating_one' 属性中的值为空,则不显示除法 energy-rating-1,如果 'energy_rating_two' 属性为空则不显示 div energy-rating-2 等等...

最佳答案

像这样:

<?php if($_product->getAttributeText('energy_rating_one') !== null): ?>
<div class="energy-rating-1"><img src="http://www.justhome.co/skin/frontend/default/just2011/images/assets/<?php echo $_product->getAttributeText('energy_rating_one');?>.jpg"></div>
<?php endif; ?>

对于所有其他人也是如此。

关于PHP - 如果为空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6507384/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com