Last active
January 4, 2018 09:03
-
-
Save billyct/6fcf55064b5ec051f8dcc7b3f743eda5 to your computer and use it in GitHub Desktop.
Abbreviations of the Names of the Months
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 | |
$mapping = [ | |
'Jan' => 'Jan.', | |
'Feb' => 'Feb.', | |
'Mar' => 'Mar.', | |
'Apr' => 'Apr.', | |
'May' => 'May', | |
'Jun' => 'June', | |
'Jul' => 'July', | |
'Aug' => 'Aug.', | |
'Sep' => 'Sept.', | |
'Oct' => 'Oct.', | |
'Nov' => 'Nov.', | |
'Dec' => 'Dec.', | |
]; | |
// http://web.library.yale.edu/cataloging/months.htm | |
// date('M') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment