Last active
December 20, 2018 13:59
-
-
Save jakeasmith/5307825 to your computer and use it in GitHub Desktop.
Get the timestamp for the beginning of the last quarter.
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 | |
| $start_date = strtotime('3 months ago'); | |
| $start_quarter = ceil(date('m', $start_date) / 3); | |
| $start_month = ($start_quarter * 3) - 2; | |
| $start_year = date('Y', $start_date); | |
| $start_timestamp = mktime(0, 0, 0, $start_month, 1, $start_year); | |
| echo $start_timestamp; |
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
| SELECT UNIX_TIMESTAMP(STR_TO_DATE(CONCAT('1,', ((QUARTER(DATE_SUB(NOW(), INTERVAL 3 MONTH)) * 3) - 2), ',', YEAR(NOW())),'%d,%m,%Y')) |
great idea.
i needed an end date of the quarter for a range.
if anybody is in need, try this:
$end_timestamp = strtotime('last day of '.date('F', strtotime("+2 month",strtotime(date('F',$start_timestamp)."1")))." {$start_year}");
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The sql one is incorrect I think as it appends the current year. So in January it will give you October 10th 2016 instead of 2015.