Created
April 3, 2012 12:27
-
-
Save kanduvisla/2291584 to your computer and use it in GitHub Desktop.
strftime shortcuts
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 | |
// Stel locale in | |
setlocale(LC_ALL, 'nl_NL'); | |
// Dinsdag, 3 Maart 2012 | |
echo strftime('%A, %e %B %Y', $stamp); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment