im trying to print the date in german using strftime. I have already tried
date_default_timezone_set('Europe/Berlin'); setlocale(LC_ALL, "de_DE", " de_DE@euro ", "deu", "deu_deu", "german"); $time = strftime("%B", 1323956220); echo $time; //I want to see "Dezember", but I see "December" instead
but he did not work. Did I miss something?
Edit: Sorry, I missed the strftime function: P
source share