标签: php string variables numbers decimal
为什么这样简单的返回错误?
echo 0.00000001;
1.0E-8
这样可行:
echo number_format(0.00000001, 8);
0.00000001