I want to get a formatted price but without the currency symbol and I want use only standard functionality of magento!
$product->getFinalPrice(); => 19
Mage::helper('core')->currency($product->getFinalPrice(), false, false);
Mage::getModel('directory/currency')->format(
$product->getFinalPrice(),
array('display'=>Zend_Currency::NO_SYMBOL),
false
);
Just below one line code is needed for that. Try this
Mage::helper('core')->currency($_yourPriceToFormat, false, false);
You could use the directory/currency
model:
Mage::getModel('directory/currency')->formatTxt(
$product->getFinalPrice(),
array('display' => Zend_Currency::NO_SYMBOL)
);