首页  >  文章  >  后端开发  >  php获取一个月有几天

php获取一个月有几天

(*-*)浩
(*-*)浩原创
2019-09-16 11:03:525978浏览

给定一个月份,要求返回这个月有多少天。

php获取一个月有几天

方式有多种,第一种使用内置函数

 cal_days_in_month:返回某个历法中某年中某月的天数(推荐学习:PHP编程从入门到精通

int cal_days_in_month ( int $calendar , int $month , int $year )

 calendar:用来计算的历法

 month:选定历法中的某月

 year:选定历法中的某年

cal_day_in_month函数需要通过 --enable-calendar 编译 PHP才可以使用

第二种,自定义函数,进行年份、月份来判断获取一个月有几天。

function get_day( $date )   
{
    $tem = explode('/' , $date);       //切割日期  得到年份和月份
    $year = $tem['0'];
    $month = $tem['1'];
    if( in_array($month , array( 1 , 3 , 5 , 7 , 8 , 01 , 03 , 05 , 07 , 08 , 10 , 12)))
    {
        $text = $year.'年的'.$month.'月有31天';
    }
    elseif( $month == 2 )
    {
        if ( $year%400 == 0  || ($year%4 == 0 && $year%100 !== 0) )        //判断是否是闰年
        {
            $text = $year.'年的'.$month.'月有29天';
        }
        else{
            $text = $year.'年的'.$month.'月有28天';
        }
    }
    else{
        $text = $year.'年的'.$month.'月有30天';
    }
    return $text;
}

$i=2;
$y=2013;
echo get_day($y.'/'.$i);

以上是php获取一个月有几天的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn