Created
January 24, 2015 20:46
-
-
Save tvlooy/98b5e1861e4ab68d9490 to your computer and use it in GitHub Desktop.
Translate datetime format
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
$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