/** * 获取当前时间信息数组 * @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 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.