0

就像主题一样:我在变量中获得了一个自动 mySQL 时间戳,我想知道自它以来已经过去了多少秒?

4

3 回答 3

3
$delta = time() - strtotime($mySqlTime) ;
于 2012-10-02T22:32:11.693 回答
1

如果您想要 MYSQL 函数,请查看TIMEDIFF

TIMEDIFF(NOW(),`timestamp`)
于 2012-10-03T00:31:36.550 回答
0

call php's time() function and subtract that result from the mysql timestamp.

To convert the mysql timestamp to the correct format, use strtotime()

于 2012-10-02T22:27:45.527 回答