当我将我的数字指定为 .000021 时,为什么 PHP 会以科学计数法打印我的数字?
在 PHP 中我有以下代码:
In PHP I have the following code:
<?PHP
$var = .000021;
echo $var;
?>
输出为 2.1E-5 !
the output is 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()
相关文章