标签: php date strtotime
$startTimeStamp = strtotime(2014-03-28); $endTimeStamp = strtotime(2014-03-31); $datediff = $endTimeStamp - $startTimeStamp; $amount_days = floor($datediff/(60*60*24));
当日期2014-03-31为结束日期时,金额不正确。
strtotime计算中有3600秒(1小时)的短路。
为什么会这样?