我的数据库中有18000个数据,数据类型是decimal,但decimal的长度是空的。如何将其转换为18000.00作为输出?

最佳答案

您可以在这里使用number_format()函数。

$number = 18000;

$formatted_number = number_format($number, 2, '.', ','); // Gives 18,000.00

希望这有帮助。

关于php - 如何使18000变成18,000.00作为输出? MySQL和PHP,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36286405/

10-14 17:08