Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在产品详细信息页面中获取购物车的产品列表。怎么获得???我认为购物车详细信息存储在会话中。如何在产品详细信息页面上使用它我正在使用 Virtuemart 2.022a 和 Joomla 2.5.9
尝试这个,
$cart = VirtueMartCart::getCart(); if(sizeof($cart->products){ echo "<pre/>"; print_r($cart->products); }
希望它对你有帮助..