欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

PHP获取两个时间相差的年数、月数和天数

程序员文章站 2022-06-07 08:42:52
...

1. [代码][PHP]代码

<?php
  //Get detail gap of year,month and days between two different time by vfhky 20130728
  $common = (time()-strtotime(get_option('swt_builddate')));
  $a = floor($common/86400/360);	//整数年
  $b = floor($common/86400/30) - $a*12;	//整数月
  $c = floor($common/86400) - $a*360 - $b*30;	//整数日
  $d = floor($common/86400);	//总的天数
  echo $a."年".$b."月".$c."日(共计".$d."天)";
?>