PHP获取昨天时间戳,当前时间信息数组,上周与上周所在的年份,上月与上月所在的年份
程序员文章站
2022-04-11 19:58:56
...
/** * 获取当前时间信息数组 * @params void * @return array */ function get_current_time_array() { $date = strtotime(date('Y-m-d')); //日期时间戳 $week = (int)date('W'); //本年第几周 $month = (int)date('n'); //月份 $year = (int)date('Y'); //年份 $time_array = array( 'date' => $date, 'week' => $week, 'month' => $month, 'year' => $year, ); } /** * 获取昨天时间戳 * @params void * @return int */ function get_prev_day() { return strtotime(date('Y-m-d', strtotime('last day')));
//或者 return strtotime("-1 day",date("Y-m-d")); } /** * 获取上周与上周所在的年份 * @params void * @return array */ function get_prev_week() { return array( 'week' => (int)date('W', strtotime('last week')), 'year' => (int)date('Y', strtotime('last week')), ); } /** * 获取上月与上月所在的年份 * @params void * @return array */ function get_prev_month() { return array( 'month' => (int)date('n', strtotime('last month')), 'year' => (int)date('Y', strtotime('last month')), ); }
以上就介绍了PHP获取昨天时间戳,当前时间信息数组,上周与上周所在的年份,上月与上月所在的年份,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
上一篇: PHP导出sql文件
下一篇: 有关html文件的介绍