艾林博客 - 技术交流与经验分享的个人博客

php获取指定日期的前一天,前一月等日期范围

Liner51

Liner51

1年前更新

        $diyTime = '2019-12-10 12:30:30';
        //  获取五小时以前
        echo date('Y-m-d H:i:s', strtotime('-5 hours', strtotime($diyTime)));
        //  获取前一天
        echo date('Y-m-d H:i:s', strtotime('-1 day', strtotime($diyTime)));
        //  获取上一月
        echo date('Y-m-d H:i:s', strtotime('-1 month', strtotime($diyTime)));

        //  获取五小时以后
        echo date('Y-m-d H:i:s', strtotime('+5 hours', strtotime($diyTime)));
        //  获取后一天
        echo date('Y-m-d H:i:s', strtotime('+1 day', strtotime($diyTime)));
        //  获取下一月
        echo date('Y-m-d H:i:s', strtotime('+1 month', strtotime($diyTime)));

        //  获取当前时间的指定范围
        echo date('Y-m-d H:i:s', strtotime('+1 month'));
The End
案例分析

喜欢就支持一下把!

(1)
一日一钱,千日千钱,绳锯木断,水滴石穿。

班固

为您推荐