今天给各位分享php怎么获得二月份天数的知识,其中也会对php两个日期差几天进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
本文目录:
- 1、php 如何用date取得指定月份有多少天?
- 2、用PHP代码如何计算今天是今年的第多少天?速度急急急???
- 3、php根据年月获取当月天数及日期数组的方法
- 4、php中怎么输出2015年2月份有多少天
php 如何用date取得指定月份有多少天?
php获取指定月份天数, php根据日期获取该月天数。今天给大家推荐三种方法,直接上代码:
方法一:
$days = date("t");
echo "当前月的天数 ".$days."br/";
方法二:
$days = date('t', strtotime("2030-12"));
echo "返回2030年12月的天数 ".$days."br/";
另外还有一种方法是使用函数直接实现,可参考:
用PHP代码如何计算今天是今年的第多少天?速度急急急???
楼上的
date("z")
或者:
$d = getdate();$d["yday"];
确实直接得到天数,如果要自己算的话,可以如下:
每一年的开始都是1月1日,所以用今天的时间戳减去一月一日的时间戳,再除以86400(都是凌晨的时间戳,所以肯定是86400的倍数),就是天数
?php
$today = strtotime(date('Ymd'));
$year_start = strtotime(date(Y0101));
$days = ( $today - $year_start )/86400 + 1;//考虑到1月1日是第一天,所以+1
php根据年月获取当月天数及日期数组的方法
本文实例讲述了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天';
$text
=
'31';
}
elseif(
$month
==
2
)
{
if
(
$year%400
==
||
($year%4
==
$year%100
!==
0)
)
//判断是否是闰年
{
//
$text
=
$year.'年的'.$month.'月有29天';
$text
=
'29';
}
else{
//
$text
=
$year.'年的'.$month.'月有28天';
$text
=
'28';
}
}
else{
//
$text
=
$year.'年的'.$month.'月有30天';
$text
=
'30';
}
return
$text;
}
echo
get_day('2016-8-1');
运行结果为:31
改造,返回日期数组:
/**
*
获取当月天数
*
@param
$date
*
@param
$rtype
1天数
2具体日期数组
*
@return
*/
function
get_day(
$date
,$rtype
=
'1')
{
$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天';
$text
=
'31';
}
elseif(
$month
==
2
)
{
if
(
$year%400
==
||
($year%4
==
$year%100
!==
0)
)
//判断是否是闰年
{
//
$text
=
$year.'年的'.$month.'月有29天';
$text
=
'29';
}
else{
//
$text
=
$year.'年的'.$month.'月有28天';
$text
=
'28';
}
}
else{
//
$text
=
$year.'年的'.$month.'月有30天';
$text
=
'30';
}
if
($rtype
==
'2')
{
for
($i
=
1;
$i
=
$text
;
$i
++
)
{
$r[]
=
$year."-".$month."-".$i;
}
}
else
{
$r
=
$text;
}
return
$r;
}
var_dump(get_day('2016-8-1','2'));
运行结果如下:
array(31)
{
[0]=
string(8)
"2016-8-1"
[1]=
string(8)
"2016-8-2"
[2]=
string(8)
"2016-8-3"
[3]=
string(8)
"2016-8-4"
[4]=
string(8)
"2016-8-5"
[5]=
string(8)
"2016-8-6"
[6]=
string(8)
"2016-8-7"
[7]=
string(8)
"2016-8-8"
[8]=
string(8)
"2016-8-9"
[9]=
string(9)
"2016-8-10"
[10]=
string(9)
"2016-8-11"
[11]=
string(9)
"2016-8-12"
[12]=
string(9)
"2016-8-13"
[13]=
string(9)
"2016-8-14"
[14]=
string(9)
"2016-8-15"
[15]=
string(9)
"2016-8-16"
[16]=
string(9)
"2016-8-17"
[17]=
string(9)
"2016-8-18"
[18]=
string(9)
"2016-8-19"
[19]=
string(9)
"2016-8-20"
[20]=
string(9)
"2016-8-21"
[21]=
string(9)
"2016-8-22"
[22]=
string(9)
"2016-8-23"
[23]=
string(9)
"2016-8-24"
[24]=
string(9)
"2016-8-25"
[25]=
string(9)
"2016-8-26"
[26]=
string(9)
"2016-8-27"
[27]=
string(9)
"2016-8-28"
[28]=
string(9)
"2016-8-29"
[29]=
string(9)
"2016-8-30"
[30]=
string(9)
"2016-8-31"
}
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php日期与时间用法总结》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php面向对象程序设计入门教程》、《PHP网络编程技巧总结》、《php字符串(string)用法总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。
php中怎么输出2015年2月份有多少天
用这个函数:int cal_days_in_month ( int $calendar , int $month , int $year )
例子:
?php
$number = cal_days_in_month(CAL_GREGORIAN, 2, 2015); // 28
echo "There were {$number} days in August 2015";
?
php怎么获得二月份天数的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于php两个日期差几天、php怎么获得二月份天数的信息别忘了在本站进行查找喔。