1. 某日开始和结束的时间戳
/** * 返回某日开始和结束的时间戳 * @param int $time 某日任意时间的时间戳 * @return array */ public static function certainday($time) { return [ strtotime(date('Y-m-d', $time)), strtotime(date('Y-m-d', $time)) + 86399 ]; }
2. 今日开始和结束的时间戳
/** * 返回今日开始和结束的时间戳 * * @return array */ public static function today() { return [ mktime(0, 0, 0, date('m'), date('d'), date('Y')), mktime(23, 59, 59, date('m'), date('d'), date('Y')) ]; }
3. 昨日开始和结束的时间戳
/** * 返回昨日开始和结束的时间戳 * * @return array */ public static function yesterday() { $yesterday = date('d') - 1; return [ mktime(0, 0, 0, date('m'), $yesterday, date('Y')), mktime(23, 59, 59, date('m'), $yesterday, date('Y')) ]; }
4. 本周开始和结束的时间戳
/** * 返回本周开始和结束的时间戳 * * @return array */ public static function week() { $timestamp = time(); return [ strtotime(date('Y-m-d', strtotime("+0 week Monday", $timestamp))), strtotime(date('Y-m-d', strtotime("+0 week Sunday", $timestamp))) + 24 * 3600 - 1 ]; }
5. 上周开始和结束的时间戳
/** * 返回上周开始和结束的时间戳 * * @return array */ public static function lastWeek() { $timestamp = time(); return [ strtotime(date('Y-m-d', strtotime("last week Monday", $timestamp))), strtotime(date('Y-m-d', strtotime("last week Sunday", $timestamp))) + 24 * 3600 - 1 ]; }
6. 本月开始和结束的时间戳
/** * 返回本月开始和结束的时间戳 * * @return array */ public static function month($everyDay = false) { return [ mktime(0, 0, 0, date('m'), 1, date('Y')), mktime(23, 59, 59, date('m'), date('t'), date('Y')) ]; }
7. 上个月开始和结束的时间戳
/** * 返回上个月开始和结束的时间戳 * * @return array */ public static function lastMonth() { $begin = mktime(0, 0, 0, date('m') - 1, 1, date('Y')); $end = mktime(23, 59, 59, date('m') - 1, date('t', $begin), date('Y')); return [$begin, $end]; }
8. 今年开始和结束的时间戳
/** * 返回今年开始和结束的时间戳 * * @return array */ public static function year() { return [ mktime(0, 0, 0, 1, 1, date('Y')), mktime(23, 59, 59, 12, 31, date('Y')) ]; }
9. 去年开始和结束的时间戳
/** * 返回去年开始和结束的时间戳 * * @return array */ public static function lastYear() { $year = date('Y') - 1; return [ mktime(0, 0, 0, 1, 1, $year), mktime(23, 59, 59, 12, 31, $year) ]; }
作者:IT青年
链接:https://www.jianshu.com/p/ad6d01467c2d
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦