Skip to content

Instantly share code, notes, and snippets.

@sdeluce
Created January 22, 2014 11:04
Show Gist options
  • Select an option

  • Save sdeluce/8556962 to your computer and use it in GitHub Desktop.

Select an option

Save sdeluce/8556962 to your computer and use it in GitHub Desktop.
Formater une date en php
<?php
$now = '2014-01-22';
$now = date("D d M Y", strtotime($now));
echo $now;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment