PHP-用逗号分隔字符串

时间:2018-09-13 09:36:23

标签: php

我正在从API中获得价值,以花钱。 目前,我得到了:

  

总投资额:17101欧元

     

投资总额(格式化):€17101,00欧元

我想要什么: 我想将总投资字符串(fx 17101)设置为货币编号(171,01)。

我尝试使用以下方法:

number_format($jsonData->amount_spent, 2, ',')

可悲的是没有得到我想要的结果

1 个答案:

答案 0 :(得分:1)

如果输入的是以欧分表示的字符串'17101',则将其除以100,然后执行以下格式:

$input = "17101";
echo number_format($input/100, 2, ',', '');

// output: 171,01

还要注意

  

此函数接受一个,两个或四个参数(不是三个):

from the Docs