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

php 获取当月/某月最后一天的时间戳

时间:2014-12-15 17:28:41      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   bs   cti   时间   nbsp   br   

public function getendmouthtime()

    {

        $date=date("Y-m",time());

        $date_arr=explode(‘-‘,$date);

        $year=$date_arr[0];

        $month=$date_arr[1];

        $days_in_month = array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);

        

        if ($month < 1 OR $month > 12)

        {

        return 0;

        }

        

        // Is the year a leap year?

        if ($month == 2)

        {

            if ($year%400 == 0 OR ($year%4 == 0 AND $year%100 != 0))

            {

            return $year.‘-‘.$month.‘-29‘;

            }

        }

        return $endstro = strtotime($year.‘-‘.$month.‘-‘.$days_in_month[$month - 1]);

    }


php 获取当月/某月最后一天的时间戳

标签:io   ar   sp   on   bs   cti   时间   nbsp   br   

原文地址:http://my.oschina.net/jyb2014/blog/356275

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