Skip to content

Instantly share code, notes, and snippets.

@tvlooy
Created January 24, 2015 20:46
Show Gist options
  • Save tvlooy/98b5e1861e4ab68d9490 to your computer and use it in GitHub Desktop.
Save tvlooy/98b5e1861e4ab68d9490 to your computer and use it in GitHub Desktop.
Translate datetime format
$d = new DateTime();
$x = new IntlDateFormatter('nl_BE', IntlDateFormatter::NONE, IntlDateFormatter::NONE, null, null, 'd MMMM Y - H:mm:ss');
echo $x->format($d) . "\n";
// output 24 januari 2015 - 21:45:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment