标签: php
我正在寻找一种将普通英国数字转换为土耳其数字的解决方案。在PHP中有什么方法可以将普通的英文数字转换成任何其他国家/地区的数字格式吗?
答案 0 :(得分:1)
NumberFormatter课程将毫不奇怪地格式化数字。
$formatter = new NumberFormatter('tr_TR', NumberFormatter::DEFAULT_STYLE); echo $formatter->format(1000.42);
1.000,42