문제

I would like to find out the magento2 equivalent of the below code from magento 1

Mage::app()->getLocale()->getNumber()

Can anyone assist me?

도움이 되었습니까?

해결책

inject the class in constructor like below :

protected $_localeFormat;

public function __construct(
    \Magento\Framework\Locale\FormatInterface $localeFormat
) {
    $this->_localeFormat = $localeFormat;
}

and then use it like :

$value = $this->_localeFormat->getNumber($price);

다른 팁

In magento 2 getNumber() available in following class.. you can add that class in construct and use it.

Magento\Framework\Locale\Format::getNumber()
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top