How to display Currency in Indian Numbering Format in PHP

后端 未结 22 2071
一整个雨季
一整个雨季 2020-12-01 06:14

I have a question about formatting the Rupee currency (Indian Rupee - INR).

For example, numbers here are represented as:

1
10
100
1,000
10,000
1,00,00         


        
22条回答
  •  Happy的楠姐
    2020-12-01 07:04

    Simply use below function to format in INR.

    function amount_inr_format($amount) {
        $fmt = new \NumberFormatter($locale = 'en_IN', NumberFormatter::DECIMAL);
        return $fmt->format($amount);
    }
    

提交回复
热议问题