我的网站在一家商店有4种货币。我无法使用下面的代码在根目录的文件中获取当前货币代码。
Mage::app()->getStore()->getCurrentCurrencyCode();
此代码适用于任何内部文件但不在根文件中工作。在根文件中,它总是提供默认货币代码,但我想要当前的货币代码。
请帮忙。
答案 0 :(得分:0)
<?php
require_once ('app/Mage.php');
umask(0);
Mage::app();
$codes = Mage::app()->getStore()->getAvailableCurrencyCodes(true);
foreach ($codes as $code) {
echo $code;
}
<强>尝试强>
尝试使用此代码。希望它会对你有所帮助。