如何在 Magento 中返回帐单地址和送货地址的数组?

发布于 2024-10-12 23:02:37 字数 52 浏览 2 评论 0原文

有没有办法让 Magento 返回登录用户过去使用过的所有送货/账单地址的 PHP 数组?

Is there a way to make Magento return a PHP array of all shipping/billing addresses that the logged in user has used in the past?

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

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

发布评论

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

评论(1

心的位置 2024-10-19 23:02:37

没有任何内置功能可以满足您的要求。但是,您可以通过获取地址集合来创建这样的数组。

像这样的东西

    $all = array();
    $customer = Mage::getModel('customer/session')->getCustomer();
    foreach($customer->getAddressesCollection() as $address)
    {
            $all[] = $address;
            //$all[] = $address->getData();
    }
    var_dump($all);

There's no built in that will do what you want. You can, however, create such an array by grabbing the address collection.

Something like this

    $all = array();
    $customer = Mage::getModel('customer/session')->getCustomer();
    foreach($customer->getAddressesCollection() as $address)
    {
            $all[] = $address;
            //$all[] = $address->getData();
    }
    var_dump($all);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文