Get formatted price without currency symbol in Magento2.
Here we will see how to get formatted price without currency symbol in Magento2.
<?php
$objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $currency = $objectManager->get('Magento\Directory\Model\Currency');
$price = 100; echo $currency->format($price, ['display'=>\Zend_Currency::NO_SYMBOL], false);
?>
Output: 100.00
You will get price without Currency Symbol using above code.
If you need formatted price with currency symbol please read this Blog.
Be the first to comment.