我有以下代码给我结果:4.00 USD
<?php echo $number->currency($auction['Product']['rrp'], $appConfigurations['currency']); ?>
我想删除小数。结果应该是 4 美元,我已经尝试了 php 函数轮次,但不起作用。我正在使用 cakephp 框架。
我有以下代码给我结果:4.00 USD
<?php echo $number->currency($auction['Product']['rrp'], $appConfigurations['currency']); ?>
我想删除小数。结果应该是 4 美元,我已经尝试了 php 函数轮次,但不起作用。我正在使用 cakephp 框架。
如文档中所示- 您可以通过选项数组指定要使用的小数位:
使用的小数位数。IE。2
echo $number->currency(
$auction['Product']['rrp'],
$appConfigurations['currency'],
array('places' => 0)
);
也试试我的代码:
Rs. <?php $offerPrice = $this->Number->currency($relatedProduct['StoreProduct']['offer_price'],"") ;
echo substr($offerPrice,0, strpos($offerPrice,".")) ?>
//input = 3,175.00
//output = 3,175