Created
October 13, 2015 22:50
-
-
Save frob/090e7b70af961c042bca to your computer and use it in GitHub Desktop.
Long and short month names in a php array.
This file contains 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 | |
$short = array( | |
'Jan', | |
'Feb', | |
'Mar', | |
'Apr', | |
'May', | |
'Jun', | |
'Jul', | |
'Aug', | |
'Sep', | |
'Oct', | |
'Nov', | |
'Dec' | |
); | |
$long = array( | |
'January', | |
'February', | |
'March', | |
'April', | |
'May', | |
'June', | |
'July', | |
'August', | |
'September', | |
'October', | |
'November', | |
'December' | |
); |
Cool
thanks ;-)
Very useful, thanks.
For other languages you can find a bunch of languages including short and long names.
This is appreciated 👍
Thanks Man
very useful :)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank's for that!