Is there a way to get the list of available locales in PHP?

前端 未结 7 1807
清酒与你
清酒与你 2020-12-18 20:20

In Java, you can call Locale.getAvailableLocales() to get the list of available locales.

I was expecting an equivalent from the PHP Locale class, but co

7条回答
  •  醉梦人生
    2020-12-18 20:48

    system("locale -a|grep XX"); where XX is language code ie. system("locale -a|grep de");

提交回复
热议问题