Skip to content

Instantly share code, notes, and snippets.

@paulofreitas
Created October 31, 2013 19:33
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 paulofreitas/7255470 to your computer and use it in GitHub Desktop.
Save paulofreitas/7255470 to your computer and use it in GitHub Desktop.
<?php
print date('m', strtotime('first day of 1 month ago'));
print date_create()->modify('first day of 1 month ago')->format('m');
print (new DateTime())->modify('first day of 1 month ago')->format('m');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment