Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
通貨記号を表示するために次のコードを使用しました
<?php $_coreHelper = $this->helper('core')?> <?php echo $_coreHelper->currency('5'); ?>
それはRs253のように表示されました
Rs5で表示したい
私はそれを修正する方法を知りません.もし誰かが知っているなら,私を助けてください,事前に感謝
おそらく $this にはアクセス権がありませんhelper()
helper()
試す
<?php echo Mage::helper('core')->currency(5); ?>