Skip to content

Instantly share code, notes, and snippets.

@verteb
Created December 20, 2012 14:50
Show Gist options
  • Select an option

  • Save verteb/4345693 to your computer and use it in GitHub Desktop.

Select an option

Save verteb/4345693 to your computer and use it in GitHub Desktop.
PHP : Date en texte français
<?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