Magento 1.9 格式价格

Format Price in Magento 1.9

我正在使用 Magento 1.9,它有这段代码(在 php,文件 price.phtml 中)以在类别和产品视图页面中显示价格:

<?php echo $_coreHelper->currency($_finalPriceInclTax, true, false) ?>

//echo 199,00€

现在我需要显示比其余数字 (00€)

大的第一个数字(在逗号 199, 之前)

也许我需要一个单独的 class 作为逗号和其他数字之前的数字。

有什么想法吗?

您可以使用以下代码

<span class='large'><?php echo str_replace(",",",</span><span class='small'>",$_coreHelper->currency($_finalPriceInclTax, true, false)); ?></span>

CSS部分

.large { font-size : 16px; }
.small { font-size : 12px; }