I am using strftime function of php to get time according to my set locale. So for Indonesian in case of February it is returning \'Pebruari\' instead of \"Februari\".
S
Please try this:
<?php
setlocale(LC_ALL, 'IND');
echo strftime("Today in Indonesia is %B");
?>
This will return you "Februari"...
It seems like Indonesian locale is not installed on the server you are working with.
If you have shell access to your server then can you kindly try:
locale -a
And check which locates are installed on your Server.