1. 程式人生 > >時間類 修改thinkphp5,自己增加了一些

時間類 修改thinkphp5,自己增加了一些

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 ) // +---------------------------------------------------------------------- // | Author: 劉志淳 <[email protected]> // +---------------------------------------------------------------------- namespace think\helper; class Time { /** * 返回今日開始和結束的時間戳
* * @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')) ]; } /** * 返回昨日開始和結束的時間戳 * * @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')) ]; } /** * 返回某一天開始和結束的時間戳 *$day 時間戳型別 * @return array */ public static function oneDay($day = false) { if (!$day) $day = time(); return self::onePeriod($day, $day); } /** * 返回一段時間的開始和結束時間戳 * @param $start * @param $end * @return array */ public static function onePeriod($start, $end) { if (!$start) { $start = time(); } if (!$end) { $end = time(); } return [ mktime(0, 0, 0, date('m', $start), date('d', $start), date('Y', $start)), mktime(23, 59, 59, date('m', $end), date('d', $end), date('Y', $end)) ]; } /** * 返回本週開始和結束的時間戳 * * @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 ]; } /** * 返回上週開始和結束的時間戳 * * @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 ]; } /** * 返回本月開始和結束的時間戳 * * @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')) ]; } /** * @param int $year * @param int $month * @return array * @from 554665488@qq.com * @author:yfl * @time: 2018年2月8日 15:07:49 * @describe:返回某一年某一月的開始和結束的時間戳 */ public static function yearMonth($year = 2018, $month = 1) { return [ $begin = mktime(0, 0, 0, $month, 1, $year), $end = mktime(23, 59, 59, $month, date('t',$begin), $year) ]; } // 返回當前季度的開始時間和結束時間 public static function quarter($month = 0) { $season = $month != 0 ? $month : ceil(date('n') / 3); return [ mktime(0, 0, 0, ($season - 1) * 3 + 1, 1, date('Y')), mktime(0, 0, 0, $season * 3, 1, date('Y')) ]; } /** * 返回上個月開始和結束的時間戳 * * @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]; } /** * 返回今年開始和結束的時間戳 * * @return array */ public static function year() { return [ mktime(0, 0, 0, 1, 1, date('Y')), mktime(23, 59, 59, 12, 31, date('Y')) ]; } /** * @param $year * @return array * @from 554665488@qq.com * @author:yfl * @time: 2018年2月9日 17:30:49 * @describe: 返回莫一年的開始和結束的時間戳 */ public static function choseYear($year) { return [ mktime(0, 0, 0, 1, 1, $year), mktime(23, 59, 59, 12, 31, $year) ]; } /** * 返回去年開始和結束的時間戳 * * @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) ]; } /** * * 獲取某一年的開始和結束的時間戳 * @param null $year * @return array|bool */ public static function getYear($year = null) { if (!$year) { return false; } return [ mktime(0, 0, 0, 1, 1, $year), mktime(23, 59, 59, 12, 31, $year) ]; } public static function dayOf() { } /** * 獲取幾天前零點到現在/昨日結束的時間戳 * * @param int $day 天數 * @param bool $now 返回現在或者昨天結束時間戳 * @return array */ public static function dayToNow($day = 1, $now = true) { $end = time(); if (!$now) { list($foo, $end) = self::yesterday(); } return [ mktime(0, 0, 0, date('m'), date('d') - $day, date('Y')), $end ]; } /** * 返回幾天前的時間戳 * * @param int $day * @return int */ public static function daysAgo($day = 1) { $nowTime = time(); return $nowTime - self::daysToSecond($day); } /** * 返回幾天後的時間戳 * * @param int $day * @return int */ public static function daysAfter($day = 1) { $nowTime = time(); return $nowTime + self::daysToSecond($day); } /** * 天數轉換成秒數 * * @param int $day * @return int */ public static function daysToSecond($day = 1) { return $day * 86400; } /** * 週數轉換成秒數 * * @param int $week * @return int */ public static function weekToSecond($week = 1) { return self::daysToSecond() *