Created
May 13, 2012 10:25
-
-
Save ssx/2687628 to your computer and use it in GitHub Desktop.
Week Start & End Timestamps
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 | |
// This creates a date string in the format YYYY-WNN, which is | |
// a four digit year followed by a hyphen and letter W then the | |
// two digit week number | |
$strtotime = date("o-\WW"); | |
// The $start timestamp contains the timestamp at 0:00 on the | |
// Monday at the beginning of the week | |
$start = strtotime($strtotime); | |
// and the end timestamp is six days later just before midnight | |
$end = strtotime("+6 days 23:59:59", $start); | |
// Display each of the timestamps and the corresponding date | |
echo "$start: ".date("r", $start).PHP_EOL; | |
echo "$end: ".date("r", $end).PHP_EOL; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Ah, thanks for the spot, it was actually with a slash originally, must have lost that along the way!