php 计算两个日期相差天数
程序员文章站
2022-03-25 22:23:45
......
<?php $startdate=strtotime("2013-3-09"); $enddate=strtotime("2013-4-05"); $days=round(($enddate-$startdate)/3600/24) ; echo $days; //days为得到的天数; ?>
下一篇: 一、Spring的第一个课时