当前位置:  开发笔记 > 前端 > 正文

在Magento2中获取当前货币符号

如何解决《在Magento2中获取当前货币符号》经验,为你挑选了1个好方法。

如何在Magento2的.phtml文件中使用货币符号编写用于打印购物车总数的代码?



1> Mukesh Chapa..:
protected $_currency;

public function __construct(
    \Magento\Backend\Block\Template\Context $context,       
    \Magento\Directory\Model\Currency $currency,        
    array $data = []
)
{           
    $this->_currency = $currency;       
    parent::__construct($context, $data);
}

/**
 * Get currency symbol for current locale and currency code
 *
 * @return string
 */ 
public function getCurrentCurrencySymbol()
{
    return $this->_currency->getCurrencySymbol();
}

推荐阅读
k78283381
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有