检查时间戳是否已经存在3小时 - php

时间:2012-10-07 00:28:05

标签: php

  

可能重复:
  Check if timestamp is x hours old?

如何确定从timestamp(格式为2012-08-06 18:22:02)到当前时间的3小时或更长时间,以PHP格式显示。

1 个答案:

答案 0 :(得分:3)

if (time() > (strtotime($timeToCheck) + 10800))