gpt4 book ai didi

php - 在 Magento 之外但在同一域中获取购物车内容

转载 作者:搜寻专家 更新时间:2023-10-31 21:08:05 26 4
gpt4 key购买 nike

我需要以某种方式使我的 Magento 商店中的当前购物车和客户信息可供 Magento 以外的我网站的其余部分访问。

例如 mysite.com/blog 在 mysite.com/store 之外。

在我的域的基础上,我运行了这段代码,但它只返回 NULL。

require_once 'store/app/Mage.php';
umask(0);
Mage::app();

Mage::getSingleton('core/session', array('name'=>'frontend'));
$totalItems = Mage::getModel('checkout/cart')->getQuote();

$cart = Mage::getModel('checkout/cart')->getQuote()->getAllItems();
foreach ($cart->getAllItems() as $item) {
$productName = $item->getProduct()->getName();
$productPrice = $item->getProduct()->getPrice();
}

最佳答案

这是一个工作的独立文件:

<?php
require_once( 'app/Mage.php' );

umask(0);
Mage::app('default');

// This has to run to authenticate customer and checkout session calls.
Mage::getSingleton('core/session', array('name' => 'frontend'));

// Get any customer model you desire.
$oSession = Mage::getSingleton( 'customer/session' );
$oCustomer = $oSession->getCustomer();
$oCheckout = Mage::getSingleton( 'checkout/session' );
$oQuote = $oCheckout->getQuote();

var_dump( $oCustomer );
var_dump( $oSession );
var_dump( $oQuote );
var_dump( $oCheckout );

$oCart = $oQuote->getAllItems();
if( !empty( $oCart ) )
{
foreach ( $oCart as $oItem )
{
$sName = $oItem->getProduct()->getName();
$fPrice = $oItem->getProduct()->getPrice();
var_dump( $sName );
var_dump( $fPrice );
}
}
?>

其他域的更多引用:

How to access Magento customer's session from outside Magento?

关于php - 在 Magento 之外但在同一域中获取购物车内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28954182/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com