Ben Norveç tarih eklemek istiyorum. Benim Web sitesinde iki dil olabilir böylece.
PHP kılavuzuna göre, o diyor
The return value of setlocale() depends on the system that PHP is running. It returns exactly what the system setlocale function returns.
Nasıl Norveçli ekleyebilirsiniz?
Şimdiden teşekkürler.
Ben aşağıdaki gibi setlocale () ve strftime () kullanmak istiyorum. (Için Norveççe ve İngilizce)
setlocale(LC_TIME, "C");
echo strftime("%A");
setlocale(LC_TIME, "fi_FI");
echo strftime(" in Finnish is %A,");
setlocale(LC_TIME, "fr_FR");
echo strftime(" in French %A and");
setlocale(LC_TIME, "de_DE");
echo strftime(" in German %A.\n");