Skip to content

Instantly share code, notes, and snippets.

@tjlytle
Created May 16, 2012 13:08
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 tjlytle/2710216 to your computer and use it in GitHub Desktop.
Save tjlytle/2710216 to your computer and use it in GitHub Desktop.
Deadline for PHP Contest
<?php
$tek = new DateTime('11:59 PM May 22 2012', new DateTimeZone('America/Chicago'));
$deadline = clone $tek;
$deadline->setTime(23, 59);
$deadline->add(new DateInterval('P8D'));
echo $deadline->format('r');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment