Hi
I am working with locales and I have a problem dealing with the Modern Standard Arabic language in PHP.
When I do a print_r(ResourceBundle::getLocales(‘’)) I get the following list http://pastebin.com/raw/qhBawQ5C
I can see the locale ar
in the list so I am assuming its available on my machine.
Now when I run echo Locale::getRegion('ar');
I get an empty value. But when I run echo Locale::getRegion('ar_BH');
I get BH
.
Why is this and how can I make the ar locale work?
Thanks in advance