Home > php教程 > php手册 > body text

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

WBOY
Release: 2016-06-13 08:44:34
Original
1303 people have browsed it

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

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template