- <?php 
- { 
-     /** 
-      * 返回今日开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function today() 
-     { 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回昨日开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function yesterday() 
-     { 
-         $yesterday = date('d') - 1; 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回本周开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function week() 
-     { 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回上周开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function lastWeek() 
-     { 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回本月开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function month($everyDay = false) 
-     { 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回上个月开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function lastMonth() 
-     { 
-   
-         return [$begin, $end]; 
-     } 
-   
-     /** 
-      * 返回今年开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function year() 
-     { 
-         return [ 
-         ]; 
-     } 
-   
-     /** 
-      * 返回去年开始和结束的时间戳 
-      * 
-      * @return array 
-      */ 
-     public static function lastYear() 
-     { 
-         return [ 
-             mktime(- 23 ,-  59 ,-  59 ,-  12 ,-  31 , $year)
 
-         ]; 
-     } 
-   
-     /** 
-      * 获取几天前零点到现在/昨日结束的时间戳 
-      * 
-      * @param int $day 天数 
-      * @param bool $now 返回现在或者昨天结束时间戳 
-      * @return array 
-      */ 
-     public static function dayToNow($day = 1, $now = true) 
-     { 
-         if (!$now) { 
-             list($foo, $end) = self::yesterday(); 
-         } 
-   
-         return [ 
-             $end 
-         ]; 
-     } 
-   
-     /** 
-      * 返回几天前的时间戳 
-      * 
-      * @param int $day 
-      * @return int 
-      */ 
-     public static function daysAgo($day = 1) 
-     { 
-         return $nowTime - self::daysToSecond($day); 
-     } 
-   
-     /** 
-      * 返回几天后的时间戳 
-      * 
-      * @param int $day 
-      * @return int 
-      */ 
-     public static function daysAfter($day = 1) 
-     { 
-         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() * 7 * $week; 
-     } 
- } 
-   
- ?>