当前位置:首页 » 编程语言 » php时间天数

php时间天数

发布时间: 2022-11-08 01:07:47

㈠ 怎样用php实现两个时间相减,得到相差的天数

<?php
$time1 = mktime(10,20,30,2,5,2000); //2000-2-5 10:20:30
$time2 = mktime(18,30,20,5,2,2000); //2000-5-2 18:30:20
$diff = (int)(($time2-$time1)/(24*3600));
echo "$time2 和 $time1 的时间差为:" . $diff . "天<br>";
?>

㈡ php 计算两个日期相隔多少年,多少月,多少天

1、首先计算2020-02-10和2020-02-01日间隔的天数。使用strtotime:<?php $days = (strtotime('2020-02-10') - strtotime('2020-02-01'))/86400; echo $days;。

㈢ 用php计算给定两个日期相差多少天

:
计算方法不只下面介绍的这些,只是一些比较常规的方法:
上面的php时间日期函数strtotime已经把字符串日期变成了时间戳,这样只要让两数值相减,然后把秒变成天就可以了,比较的简单,如下:
$days=round(($enddate-$startdate)/3600/24) ;
下面介绍另外一种方法:
上面判断的是两个日期的大小,下面则是判断生日的程序代码,得到的$n就是相距生日的天数。
$birthday=生日;
$birthday = preg_replace(‘/d+/’, Date(‘Y’), $birthday, 1);
$d = 60*60*24;
$n= floor((strtotime($birthday)-time())/$d);$n=$n+1;
还有如果相比的是现在的时间,就可以用time()函数,得到的就是现在的时间戳.
第二种情况呢,就是有数据库,这样就相对比较容易一些了!如果是MSsql可以使用触发器!用专门计算日期差的函数datediff()计算便可!
如果是MYSQL那就用两个日期字段的时间戳值,进行计算后便可得到相差的天数了。方法和上面的代码很像。

㈣ php 算出从今天到周日的天数

date_default_timezone_set("Etc/GMT-8");
$nowtime=date("Y-m-dH:i",time());
$w=date("w",time());
if($w==0)
$w="今天是星期天!";
else
{
$day=7-$w;
$w="今天离星期天还有$day天";
}
echo"当前时间为:".$nowtime;
echo"</br>".$w;

㈤ php计算一段日期内偶数天数和奇数天数

php很简单的
时间文字->时间戳 => 时间戳想减 -> 除每天的秒数 -> 判断奇偶

转时间戳是 strtotime
每天 86400 秒
判断奇偶取模

如果结束天也计算1天的话,记得要先+86400或奇偶倒置

㈥ 在php怎么得到当月的总天数

<?php
$days = cal_days_in_month(CAL_GREGORIAN, 4, 2011);
echo "返回2011-4的天数 ".$days."<br/>";
$days = date('t', strtotime("2011-4-1"));
echo "返回2011-4的天数 ".$days."<br/>";
$days = date("t");
echo "当前月的天数 ".$days."<br/>";
?>

㈦ php计算两个时间之间的天数

<?php
$days=cal_days_in_month(CAL_GREGORIAN,4,2011);
echo"返回2011-4的天数".$days."<br/>";
$days=date('t',strtotime("2011-4-1"));
echo"返回2011-4的天数".$days."<br/>";
$days=date("t");
echo"当前月的天数".$days."<br/>";

$thisday=date("d",time());


//循环当前天数到当前月底日期
for($i=$thisday;$i<=$days;$i++){
//在这里进行循环,如果跨几个月的话,就外层再加一个循环月份的就可以了
}
?>

㈧ thinkphp 当前时间减去已知时间 怎么求天数

$currentTime=time();//当前时间
$cnt=$currentTime-strtotime("2014-01-01");//与已知时间的差值
$days=floor($cnt/(3600*24));//算出天数

㈨ php中,计算指定日期还有多少天

思路是先求两个时间的秒数差,然后将结果转换即可:

echocalcTime('2018-08-20','2018-08-30');
functioncalcTime($fromTime,$toTime){

//转时间戳
$fromTime=strtotime($fromTime);
$toTime=strtotime($toTime);
//计算时间差
$newTime=$toTime-$fromTime;
returnround($newTime/86400).'天'.
round($newTime%86400/3600).'小时'.
round($newTime%86400%3600/60).'分钟';

}

㈩ 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
==
0
||
($year%4
==
0
&&
$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
==
0
||
($year%4
==
0
&&
$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_mp(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程序设计有所帮助。

热点内容
办公服务器什么系统好 发布:2025-01-11 23:50:06 浏览:346
boat服务器怎么开 发布:2025-01-11 23:48:57 浏览:484
安卓手机视频怎么快进 发布:2025-01-11 23:46:18 浏览:353
电脑的项目怎么连接远端服务器 发布:2025-01-11 23:45:25 浏览:852
sql语句between 发布:2025-01-11 23:45:14 浏览:327
王者安卓转换苹果系统会损失什么 发布:2025-01-11 23:45:13 浏览:737
安卓手机涨价怎么办 发布:2025-01-11 23:27:17 浏览:712
三消游戏服务器搭建 发布:2025-01-11 23:20:01 浏览:246
c语言的函数不可单独进行编译 发布:2025-01-11 23:12:33 浏览:18
怎么查信用卡查询密码 发布:2025-01-11 23:11:08 浏览:572