您的位置:首页 > 编程语言 > PHP开发

PHP获取昨天时间戳,当前时间信息数组,上周与上周所在的年份,上月与上月所在的年份

2015-11-26 16:05 796 查看
/**
* 获取当前时间信息数组
* @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