这是我的 3 个 if 条件,如果这 3 个条件为假,则必须显示图像。
$nameac=$_product->getName();
$array='product1,product2,product3,product4';
if (in_array($nameac,$array)){
if ($_product->isSaleable()) {
if ($apple=='Apple'||$currentCategoryId=='52') {
} else {
echo' <img src="image.jpg" width="50" height="50" class="onsaleicon" />';
}
}
提前致谢。