我如何格式化一个数字显示在wpforms数字滑块在这里:https://imgur.com/ey2YMWK建议显示999,999.00
8xiog9wr1#
使用number_format() php函数。
number_format()
8xiog9wr2#
$number = 999999; echo number_format($number, 2, '.', ',');
2条答案
按热度按时间8xiog9wr1#
使用
number_format()
php函数。8xiog9wr2#