我正在一个网站上工作,我试图让首页跳过显示缺货的产品。
展示产品的代码如下:
$data = array(
'sort' => 'p.date_added',
'order' => 'DESC',
'start' => 0,
'limit' => $setting['limit']
);
$results = $this->model_catalog_product->getProducts($data);
foreach ($results as $result) {
if ($result['quantity'] <= 0) { continue; }
if ($result['image']) {
$image = $this->model_tool_image->resize($result['image'], $setting['image_width'], $setting['image_height']);
} else {
$image = false;
}
if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
$price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')));
} else {
$price = false;
}
if ((float)$result['special']) {
$special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')));
} else {
$special = false;
}
if ($this->config->get('config_review_status')) {
$rating = $result['rating'];
} else {
$rating = false;
}
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'thumb' => $image,
'name' => $result['name'],
'price' => $price,
'special' => $special,
'rating' => $rating,
'reviews' => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
'href' => $this->url->link('product/product', 'product_id=' . $result['product_id']),
);
}
对于此foreach循环,此情况下的限制设置为6,因此此代码运行6次以显示首页上的6个项目。
为了跳过缺货商品,我添加了一行:
if ($result['quantity'] <= 0) { continue; }
现在这段代码完成了它的工作,但当它检测到一个0库存的项目时,它会留下一个空的空间(所以而不是显示它显示的6个产品空间5)
我想要完成的是当这段代码检测到0库存项目时,它会增加foreach循环,使其运行7次而不是6次。
谢谢!
答案 0 :(得分:0)
所以我相信我已经解决了这个问题,而不必乱用MySQL。
我刚刚添加了一个带有中断代码的计数器系统,谈论基础知识。
基本上我已将代码限制设置为外部变量$ x设置为我的break变量。
当缺货值输入时,计数器减少1,而库存商品则增加1到柜台。
因此当计数器命中我的break变量时,代码会关闭。