Respuestas:
Prueba este:
Mage::app()->getLocale()->currency(Mage::app()->getStore()->getCurrentCurrencyCode())->getSymbol();
Almacenar código de moneda, por ejemplo. Dólar estadounidense
$currency_code = Mage::app()->getStore()->getCurrentCurrencyCode();
símbolo de moneda de la tienda ej. PS
$currency_symbol = Mage::app()->getLocale()->currency( $currency_code )->getSymbol();
nombre de la moneda de la tienda, por ejemplo. Dólar estadounidense
$currency_name = Mage::app()->getLocale()->currency( $currency_code)->getName();
Tratar:
$currencyCode = '';
$currency = $order->getOrderCurrency(); //$order object
if (is_object($currency)) {
$currencyCode = $currency->getCurrencyCode();
}
$currencySymbol = Mage::app()->getLocale()->currency($currencyCode)->getSymbol();
var_dump($currencySymbol);
Usando cualquier código de moneda dado puede derivar el símbolo usando Zend_Locale:
$curr = new Zend_Currency('en_US');
echo $curr->getSymbol();
Simplemente pase el valor en variable ... devolverá el precio actual del formato de moneda
$Formatted_Price = Converted Price with Currency
$Variable_Price = Your Variable value
$Formatted_Price= Mage::helper('core')->currency($Variable_Price, true, false);