DateTime :: format in German (day of week)
1 answer
To quote the documentation for Datetime::format
:
This method does not use locales. All products are in English.
If you want to format the date in a different region (German in your case), you can use date
:
date('D, d.m.Y H:i');
+1
source to share