与我将要在购物车上做的事情相混淆

时间:2012-07-19 06:49:55

标签: php zen-cart

购物车上有更新功能的参考吗? 例如,可以改变产品数量的功能等。 谢谢你提前

2 个答案:

答案 0 :(得分:0)

没有任何功能可以做到这一点。整个购物车页面都是一个表单,您基本上只需在更新购物车时提交表单。

答案 1 :(得分:0)

购物车存储在$ _SESSION [' cart']中,这是一个shoppingCart对象。

您可以在includes / classes / shopping_cart.php找到代码。

功能包括:

reset($reset_database=false) // empty cart
add_cart($products_id, $qty = '1', $attributes = '', $notify = true) // add an item to the cart
update_quantity($products_id, $quantity = '', $attributes = '') // update quantity of a product
remove($products_id) // remove an item from cart

评论中有很好的记录。有关更多函数,请参阅类定义。

如何使用的示例:

$_SESSION['cart']->add_cart($products_is, $quantity);

有文件夹/ includes / extra_cart_actions,您可以在其中放置自己的php文件,这些文件在购物车操作期间执行(添加,删除,更新)。