continue
Im putting values into an array.
example values:
14
15.1
14.12
I want them all to have 2 decimals.
meaning, i want the output of the array to be
14.00
15.10
14.12
How is this easiest achieved?
Is it possible to make the array automatically convert the numbers into 2 decimalplaces?
Or do I need to add the extra decimals at output-time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
You can use
number_format()
as a map function toarray_map()
例如,您
现在可以尝试 $formated 将是 15.10
you can try for example
now $formated will be 15.10
在将值输入数组之前使用 number_format 函数:
use the number_format function before entering values into array :