标签: php math programming-languages int notation
我这里有一个非常大的数字,但我无法摆脱这种表示法。我希望它只显示数字而不是 “4.8357032784585E + 24 - 77”
我尝试了(int)$ variable但它没有帮助。建议?
答案 0 :(得分:6)
使用number_format。
number_format
echo number_format($variable, 0, '.', '');