Created
December 20, 2012 14:50
-
-
Save verteb/4345693 to your computer and use it in GitHub Desktop.
PHP : Date en texte français
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| setlocale(LC_ALL, 'fr_FR'); | |
| list($year, $month, $day) = explode('-', get_field('date')); | |
| $dateString = strftime("%e %B %Y", mktime(0, 0, 0, $month, $day, $year)); | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment