隐藏magento管理面板中信用卡号码的最后4位数字

时间:2014-10-07 05:09:01

标签: javascript magento credit-card

code [app / code / core / Mage / Payment / Block / Info / Ccsave.php]在magento [sales > order ]

的管理面板中显示信用卡号

显示所有"信用卡号码"数字,除了最后四位[隐藏最后四位数]",我们必须在上面的代码中编辑以下行。

Mage::helper('payment')->__('Credit Card Number') => $info->getCcNumber(),

如何将substr()应用于$info->getCcNumber(),以显示所有"信用卡号码"数字,最后四位数除外[隐藏最后四位数字]。

请帮我找到解决方案。

提前致谢。

1 个答案:

答案 0 :(得分:0)

Mage::helper('payment')->__('Credit Card Number') => substr($info->getCcNumber(),0,-4).'***',