我对如何同时使用 number_format 和 round 函数有疑问,这是因为我有一个脚本可以导入所有供应商的产品,但我需要对价格进行四舍五入,例如:
供应商的价格:1854.81 美元四舍五入的价格:1854.99 美元(这是我想要的格式)我的脚本打印的价格:1,854.90 美元
我尝试了 3 PHP 变体来做到这一点:
变体 #1:
$preciosinr = 1854.81;
echo number_format(round($preciosinr*4)/4,2); //Print 1,854.90
变体 #2
$preciosinr = 1854.81;
$pos = 3 - floor(log10($preciosinr));
echo number_format(round($preciosinr,$pos)-0.10,2); //Print 1,854.75
变体 #3
$preciosinr = 1854.81;
number_format($preciosinr,2);
number_format(round($preciosinr,1),2);
number_format(round($preciosinr,0),2);
echo number_format(round($preciosinr,0)-0.01,2); //Print 1,854.99
正如您所看到的,所有变体都使用“,”打印价格,而我需要没有这个的价格,因为我的系统错误地检测到价格。
我在 php.net 中读到我需要使用以下 sintaxis,但我不知道如何与我的代码集成。
// english notation without thousands separator
$english_format_number = number_format($number, 2, '.', '');
// 1234.57
你能帮助我吗?