gpt4 book ai didi

PHP - 字符串到货币的转换

转载 作者:可可西里 更新时间:2023-11-01 00:04:10 24 4
gpt4 key购买 nike

我正在尝试使用 this function 将字符串转换为货币格式,并尝试创建这样的东西:

350000000

to

350.000.000,00

到目前为止我所有的尝试都失败了,这是最后一次:

setlocale(LC_MONETARY, 'pt_PT.UTF-8@euro');
echo money_format('%.2n', $preco);

如有任何帮助,我们将不胜感激。干杯!

最佳答案

你可以使用number_format()像这样:

$number = 350000000;
$money_number = number_format($number,2,',','.');

关于PHP - 字符串到货币的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3293542/

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