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

前端 未结 7 1855
清酒与你
清酒与你 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:37

    I don't think there is a built in functions for this. You need to ask the operating system which locales are installed.

    For example, if you run on a unix system you will need to execute the command:

    $ locale -a
    

提交回复
热议问题