Sure. Your code:
PHP Code:
<?php
setlocale(LC_ALL, 'de_DE');
echo strftime("%e %B %Y");
?>
Produces this for me:
Which is not correct.
And the code I posted before:
PHP Code:
<?php
setlocale(LC_ALL, 'it_IT');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'de_DE');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'fr_FR');
echo strftime("%A, %e %B %Y<br/>");
setlocale(LC_ALL, 'es_ES');
echo strftime("%A, %e %B %Y<br/>");
?>
Produces this:
domenica, 6 dicembre 2020
domenica, 6 dicembre 2020
domenica, 6 dicembre 2020
domenica, 6 dicembre 2020
which shows that only the Italian locale is doing anything.