码迷,mamicode.com
首页 > Web开发 > 详细

PHP获取指定日期的上个月的日期 转

时间:2014-06-26 23:54:44      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:class   ext   cti   io   c   div   

PHP获取指定日期的上个月的日期

function last_month_today($time){
        $last_month_time = mktime(date("G", $time), date("i", $time),
                    date("s", $time), date("n", $time), 0, date("Y", $time));
        $last_month_t =  date("t", $last_month_time);
    
        if ($last_month_t < date("j", $time)) {
            return date("Y-m-t H:i:s", $last_month_time);
        }
    
        return date(date("Y-m", $last_month_time) . "-d", $time);
    }

PHP获取指定日期的上个月的日期 转,布布扣,bubuko.com

PHP获取指定日期的上个月的日期 转

标签:class   ext   cti   io   c   div   

原文地址:http://www.cnblogs.com/zhuanli/p/3807754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!