Skip to content

Instantly share code, notes, and snippets.

@dcousineau
Created August 15, 2013 20:13
Show Gist options
  • Save dcousineau/6244381 to your computer and use it in GitHub Desktop.
Save dcousineau/6244381 to your computer and use it in GitHub Desktop.
<?php
var_dump( array_combine(range(1,12), array_map(function($i) { return date('M', mktime(1,0,0,$i,1,1970)); }, range(1,12))) );
/**
array(12) {
[1] =>
string(3) "Jan"
[2] =>
string(3) "Feb"
[3] =>
string(3) "Mar"
[4] =>
string(3) "Apr"
[5] =>
string(3) "May"
[6] =>
string(3) "Jun"
[7] =>
string(3) "Jul"
[8] =>
string(3) "Aug"
[9] =>
string(3) "Sep"
[10] =>
string(3) "Oct"
[11] =>
string(3) "Nov"
[12] =>
string(3) "Dec"
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment