Possible Duplicate:
setlocale(LC_ALL, βen_GB.UTF8β) not working on windows
I have the following PHP code:
setlocale(LC_TIME, "fi_FI");
echo strftime(" in Finnish is %A, %B %d, %G at %l:%M%p");
setlocale(LC_TIME, "fr_CA");
echo strftime(" in French Canadian is %A, %B %d, %G at %l:%M%p");
Problems:
- On my Windows machine, it displays as English. How do I configure PHP or Windows to make this work right?
On my Linux machine, it displays this:
- in Finnish is maanantai, lokakuu 15, 2012 at 6:42
- in French Canadian is lundi, octobre 15, 2012 at 6:42
Any ideas why the words are in lower case?