PHP的时间函数

        time();     // 获取当前时间(时间戳)
        date('Y', time());       // 获取当前时间年(Y=>2019,y=>19)
        date('m', time());       // 获取当前时间月(M=>Nov,m=>11)
        date('d', time());       // 获取当前时间日(D=>Mon,d=>25)(可以组合使用)
        date('Y-m-d h:m:s', time());       // 获取当前时间
        date('','');   // 参数1为格式,参数2为时间戳[默认当前时间]

        strtotime('-30 second', time());    // 30s前的时间戳
        strtotime('-2 minute', time());     // 2min前的时间戳
        strtotime('+1 hour', time());       // 1hour后的时间戳
        strtotime('-1 day', time());        // 上一天的时间戳
        strtotime('-1 week', time());       // 上一周的时间戳
        strtotime('+2 month', time());      // 后两个月的时间戳

        date('Y-m-d h:m:s',strtotime('+1 day'));    // 获取明天时间
        date('Y-m-d 0:0:0',strtotime('-1 week'));   // 获取一个星期前0:0:0的时间
        strtotime(date('Y-m-d 0:0:0',strtotime('-1 week')));    // 获取一个星期前0:0:0的时间戳

你可能感兴趣的:(PHP的时间函数)