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

PHP 获取每个月具体的天数

时间:2016-04-20 21:40:42      阅读:348      评论:0      收藏:0      [点我收藏+]

标签:

方法1:

$firstday = mktime(0,0,0,$month,1,$year); //取所给年月的第一天的UNIX时间戳    
$days = date(‘t‘,$firstday); //返回指定月份的天数  

方法2:

$days = cal_days_in_month(CAL_GREGORIAN, 4, 2013);//返回2003-02的天数  

方法3:

$days = date(‘t‘, strtotime($year . ‘-‘ . $month . ‘-01‘));//返回天数 

方法4:

$ndays = date("t"); //return the number of days for this month and this year  
date("j",mktime(0,0,0,$month+1,0,$year)); 

 

PHP 获取每个月具体的天数

标签:

原文地址:http://www.cnblogs.com/fyy-888/p/5414192.html

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