gpt4 book ai didi

php - Magento 中的信用卡详细信息

转载 作者:可可西里 更新时间:2023-11-01 12:35:11 26 4
gpt4 key购买 nike

如何从 OnepageController.php 获取 Magento 中的信用卡详细信息?我已经检索了所有其他信息,如账单信息、运输信息和用户详细信息。我正在使用以下方法获取卡的详细信息,但它返回空白:

$lastQuoteId = $session->getLastQuoteId();
$lastOrderId = $session->getLastOrderId();
$order = Mage::getModel('sales/order')->load($lastOrderId);
$card_exp_month = $order->getCcExpMonth($lastOrderId);///(Nahi AAya)
$card_exp_year = $order->getCcExpYear($lastOrderId);///(Nahi AAya)

当我打印 $card_exp_month$card_exp_year 时,两者都是空白的。还有其他方法可以确定信用卡详细信息吗?我正在寻找 CC 编号、到期年份和到期月份。

最佳答案

尝试使用 $order->getPayment()->getCcExpMonth($lastOrderId) 而不是 $order->getCcExpMonth($lastOrderId)

使用 print_r($order->getPayment()->debug()) 查看其他可用值,或查看 sales_flat_order_payment 表以了解更多信息示例。

关于php - Magento 中的信用卡详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4583272/

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