欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-05-06 21:50:31
...
/**
 * 获取当前时间信息数组
 * @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教程有兴趣的朋友有所帮助。