如何让php显示零而不是-7?

时间:2016-03-05 19:37:21

标签: php

由于我是PHP的初学者,我无法弄明白我应该如何让计算器在结尾处显示零而不是-x?

<?php
$intValue = 0;
$arrResult = json_decode(file_get_contents('http://preev.com/pulse/units:btc+usd/sources:bitfinex+bitstamp+btce'), true);
foreach($arrResult['btc']['usd'] as $key => $index){
    $intValue = $intValue + $arrResult['btc']['usd'][$key]['last'];
}
echo ($intValue / 3);
$val1 = 1;
$value001usd = $val1 / $intValue / 3 / 1000;
echo "  0.001 USD Equals to $value001usd BTC";
?>

它将此帖子的结果输出为:402.31333333333 0.001 USD Equals to 2.7618053369126E-7 BTC

现在我需要" 402.31333333333 0.001 USD Equals to 0.000002761 BTC"

2 个答案:

答案 0 :(得分:0)

使用函数number_format()正确格式化您需要的小数位数:

$valueBTC = $val1 / $intValue / 3 / 1000;
$textBTC  = number_format($valueBTC, 10);
echo("  0.001 USD Equals to $textBTC BTC\n");

答案 1 :(得分:-2)

您实际上可以将输出数量舍入到您想要的任何长度。 这是一个例子 echo round(1.9558334534534,5); //输出1.95583

这是php功能的链接,你可以获得额外的帮助

http://php.net/manual/en/function.round.php