我有这个号码:
$total = '0.04149951583898188';
我想只在点后面显示前8位数字,如下所示:0.0414995
我该怎么做?
答案 0 :(得分:0)
以下是我的回答,猜测你的个人资料&你可能在谈论PHP的代码片段。别忘了告诉我们你想要哪种语言帮助,我们不应该猜!
看一下PHP的round()函数:
<?php
$total = '0.04149951583898188';
echo round((float)$total, 8); // Cast the $total string variable to a type float, and round it
?>