Created
May 16, 2012 13:08
-
-
Save tjlytle/2710216 to your computer and use it in GitHub Desktop.
Deadline for PHP Contest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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