Skip to content

Instantly share code, notes, and snippets.

@vielhuber
Created December 9, 2024 11:43
Show Gist options
  • Save vielhuber/dee9316059a65706306d18a6dad9483c to your computer and use it in GitHub Desktop.
Save vielhuber/dee9316059a65706306d18a6dad9483c to your computer and use it in GitHub Desktop.
strftime deprecation #php
setlocale(LC_TIME, 'de_DE.utf8');
__strftime('%A, %d. %B %Y', strtotime('2001-01-01')); // Montag, 01. Januar 2001
IntlDateFormatter::formatObject(new DateTime('2001-01-01', new DateTimeZone('Europe/Berlin')), 'eeee, dd. MMMM yyyy', 'de_DE'); // Montag, 01. Januar 2001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment