本文介绍了在PHP中将float转换为字符串?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
float(1.2345678901235E + 19)=>字符串(20)12345678901234567890
(这是json_decode ...)
解决方案
>
echo number_format($ float,0,'。','');
注意:这是整数,对于额外小数位增加0
Like:
float(1.2345678901235E+19) => string(20) "12345678901234567890"
Can it be done?
(it's for json_decode...)
解决方案
echo number_format($float,0,'.','');
note: this is for integers, increase 0 for extra fractional digits
这篇关于在PHP中将float转换为字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!