How can I add commas to numbers in PHP

后端 未结 4 1800
难免孤独
难免孤独 2020-11-30 05:45

I would like to know how can I add comma\'s to numbers. To make my question simple.

I would like to change this:

1210 views

To:

4条回答
  •  暖寄归人
    2020-11-30 06:05

     $number = 1234.56;
    
    //Vietnam notation(comma for decimal point, dot for thousand separator)
    
     $number_format_vietnam = number_format($number, 2, ',', '.');
    
    //1.234,56
    

提交回复
热议问题