gpt4 book ai didi

php - 格式化从 1000 到 10.00 的数字

转载 作者:行者123 更新时间:2023-12-04 02:43:10 24 4
gpt4 key购买 nike

我想将 1000 格式化为 10.00PHP number_format 函数似乎不适用于此。

我试过:

$amount2 = number_format("$cost",2,"",",");
echo "$cost";

有什么想法吗?有没有一种方法可以操纵 number_format 来显示结果(即只在最后两位数之前插入一个小数?

最佳答案

数字格式会改变“.”到一个“,”但是你告诉它格式化一千。

$cost=1000;
echo number_format($cost,2,'.',',');
//1,000.00

你想要的只是:

$cost=1000;
echo number_format($cost/100,2,'.',',');
//10.00

关于php - 格式化从 1000 到 10.00 的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19445746/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com