Skip to content

Instantly share code, notes, and snippets.

@asgrim
Created January 18, 2017 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save asgrim/30656686829394ab7df052f11954c199 to your computer and use it in GitHub Desktop.
Save asgrim/30656686829394ab7df052f11954c199 to your computer and use it in GitHub Desktop.
<?php
$months = array_map(
function ($i) {
return (new \DateTimeImmutable())->setDate(2017, $i, 1)->format('F');
},
range(1, 12)
);
var_dump($months);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment