Skip to content

Instantly share code, notes, and snippets.

@qzio
Created December 1, 2010 09:09
Show Gist options
  • Save qzio/723218 to your computer and use it in GitHub Desktop.
Save qzio/723218 to your computer and use it in GitHub Desktop.
php > $d = new DateTime();
php > $d->setTimestamp(1288565940);
php > echo $d->format('Y/m/d H:i');
2010/10/31 23:59
php > $d->modify('-1 month');
php > echo $d->format('Y/m/d H:i');
2010/10/01 23:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment