我正在尝试在我在根 opencart 文件夹中创建的新文件中更新当前购物车中产品的数量和总数。
首先,我从另一个文件中获取已在此处发布的总数和数量。然后我加载产品数组。然后,如果 $total 和 $quantity 存在且不等于 0,我将使用新的数量和总计值更新 products 数组。我的问题是我不太确定如何加载 products 数组并使用新的数量和总计值更新它。
到目前为止,这是我想出的。任何帮助将不胜感激。
<?php
$total = mysql_real_escape_string(htmlentities($_POST['total']));
$quantity = mysql_real_escape_string(htmlentities($_POST['quantity']));
$this->data['products'] = array();
$products = $this->cart->getProducts();
if ($total && $total != 0 && $quantity && $quantity != 0){
product['quantity'] = $quantity;
product['total'] = $total;
}
?>