使用PHP的日期差(以天为单位)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP的日期差(以天为单位)相关的知识,希望对你有一定的参考价值。

Calculate the difference from two date in days
  1. // Calculate the difference from two date in days
  2. $diff = (strtotime("2010-04-26") - strtotime("2010-02-05")) / 86400;
  3.  
  4. // To format now, for example, use date('Y-m-dì);
  5. $diff = (strtotime( date('Y-m-d') ) - strtotime("2010-02-05")) / 86400;

以上是关于使用PHP的日期差(以天为单位)的主要内容,如果未能解决你的问题,请参考以下文章

Android/Java - 以天为单位的日期差异

以天为单位的日期时间差异的高性能计算

如何以天为单位注释日期时间的差异

Pandas Timedelta 以天为单位

Nginx 配置日志以天为单位分开保存

FLINK 基于1.15.2的Java开发-使用AggregateFunction解决以天为单位诸如PVUV等统计的实时计算