如何获取tpl文件中的产品名称和数量

发布于 2024-12-09 13:21:30 字数 74 浏览 0 评论 0原文

我正在致力于将新的支付网关集成到开放式购物车中,我几乎已经成功了。我面临的唯一问题是我无法发布产品的名称和数量。 任何帮助将不胜感激。

I m working on the integration of a new payment gateway in an open-cart in which i have almost succeeded. The only problem which i m facing is that i m not able to post the name and quantity of the products.
Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

愁以何悠 2024-12-16 13:21:30
$products = $this->cart->getProduct();
foreach($products as $product) {
    echo $product['name'] . ' - ' $product['quantity'] . '<br />';
}

会回声

名称 - 数量

名称 - 数量

因此您只需根据需要进行相应编辑

$products = $this->cart->getProduct();
foreach($products as $product) {
    echo $product['name'] . ' - ' $product['quantity'] . '<br />';
}

will echo

Name - Quantity

Name - Quantity

so you just need to edit accordingly for your needs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文