Home >php教程 >php手册 >PHP获取指定指定月份的天数,php获取月份天数

PHP获取指定指定月份的天数,php获取月份天数

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 08:44:341340browse

PHP获取指定指定月份的天数,php获取月份天数


最近写接口的时候突然发现的非常实用的php函数,在这儿分享一下:

cal_days_in_month(calender,$month,$year);

calender:历法,常量,如CAL_GREGORIAN(阳历);

 

$month:指定的月份;

$year:指定的年份;

返回: 天数

如:

  $monthday = cal_days_in_month(CAL_GREGORIAN,3,2016);

  echo $monthday;

输出:31

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:HBase Java编程示例Next article:记一次流量异常处理