web-dev-qa-db-ja.com

magento価格getPrice()値

function getDescriptionHtml($tpl, $p){
    $out = "";
    $pr = $p["product"];

    if(Mage::getStoreConfig('featuredproducts/displayoptions/title') == 'description'){
        $out .= "<ins><h4>{$pr->getName()}</h4></ins>";
    }
    $out .= "<span class=\"description\"".
            (!Mage::getStoreConfig('featuredproducts/displayoptions/description') ?
                    "style=\"display:none;\""
                :
                    ""
            )
            .">{$p['description']}</span>";
    $out .= "<ins><div>".
            (Mage::getStoreConfig('featuredproducts/displayoptions/price') ?
                    "<span style=\"font-size:45px\">{$pr->getPrice()}</span>"
                :
                    ""
            )       
            ."".
            (Mage::getStoreConfig('featuredproducts/displayoptions/bnb') ?
                    "<div><button style=\"postion:relative;margin-left:80px;margin-top:140px\" class=\"form-button\" onclick=\"setLocation('{$p["url"]}')\"><span>{$tpl->__('Buy Now')}</span></button></div>"
                :
                    "")
            ."
            </div></ins>";
    return $out;        
}

示されているコードによれば、$ pr-> getPrice()を使用している場合、出力は299.0000のようになりますが、299.00のようにしたいです。これどうやってするの?

11
webkul

試してみてください 数値形式

"<span style=\"font-size:45px\">{" . number_format($pr->getPrice(), 2) . "}</span>"
16
Yannick Motton

これを試してみませんか...

Mage::helper('core')->currency($pr->getPrice());

通貨記号も表示されます。

43
Alan Lapington
Mage::helper('core')->currency($_product->getFinalPrice(),true,false);
  • 価格形式の場合は「true」。
  • HTMLがない場合は「false」。

これはMagento 1.7.0.2で行いました

20
R T

または

sprintf("%0.2f",$_product->getFinalPrice());
2
dan

場所と通貨のフォーマットによっては、数値フォーマットが常に正しく機能するとは限らないため、「丸め」を使用します。

<span style=\"font-size:45px\">{" . round($_product->getFinalPrice(),2) . "}</span>
1
Marlon Creative