Last active
June 6, 2017 08:58
-
-
Save dolphin836/affa9f5d209e6d1ec25cb9f93f0af95d to your computer and use it in GitHub Desktop.
[获取今天、本周、本月、今年的开始和结束的UNIX时间戳] #tags:UNIX,时间戳
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
// 今天 | |
$start = strtotime("today"); | |
$end = $start + 3600 * 24; | |
// 本周 | |
$start = mktime(0, 0 , 0, date("m"), date("d") - date("w") + 1, date("Y")); | |
$end = mktime(23, 59, 59, date("m"), date("d") - date("w") + 7, date("Y")); | |
// 本月 | |
$start = mktime(0, 0 , 0, date("m"), 1, date("Y")); | |
$end = mktime(23, 59, 59, date("m"), date("t"), date("Y")); | |
// 今年 | |
$start = mktime(0, 0 , 0, 1, 1, date("Y")); | |
$end = mktime(23, 59, 59, 12, 31, date("Y")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment