为什么 PHP 用科学记数法打印我的数字,当我将它指定为 .000021 时?
在 PHP 中,我有以下代码:
In PHP I have the following code:
<?PHP
$var = .000021;
echo $var;
?>
输出是2.1E-5!
为什么?它应该打印 .000021
Why? it should print .000021
推荐答案
使用 number_format() 得到你在追求什么:
Use number_format() to get what you're after:
print number_format($var, 5);
还要检查sprintf()
相关文章