如何在PHP中获取两个日期之间的差异?

时间:2010-11-10 05:28:35

标签: php

  

可能重复:
  How to calculate the date difference between 2 dates using php

date1=2010-11-10 09:49:54;
date2=2010-11-10 09:49:54;

如何在PHP中区分这两个日期?

1 个答案:

答案 0 :(得分:2)

$difference = strtotime($date1) - strtotime($date2);

差异将以秒为单位。