0

今天在这个问题上扭曲了我的大脑并进行了一些搜索,但没有找到任何好的答案。看看我的例子。

$time_now = date("H:i:s"); // The current time. (let's say the clock is 14:25:33)
$time_visited = "14:23:33"; // the time page was visited. (set by cookie)

因此,假设我想获得 $time_visited 和 $time_now 之间的秒数(应该是 120 秒)在这些值之间获取/计数秒的最简单方法是什么?

4

1 回答 1

5

time () 返回当前时间戳,strtotime () 将给定字符串解析为时间戳

time() - strtotime("14:23:33")
于 2012-07-14T13:25:42.203 回答