strtotime&的错误转换日期()为1345810203

时间:2012-08-24 12:35:30

标签: php

我想存储开始时间&结束时间并计算两次之间的总时间差。有时我得到-1 min -24 sec这个问题的负时间......

如果我回复此代码

date('Y-m-d h:m:s',1345810203);

我得到了2012-08-24 02:08:03的答案,但我回复了这段代码

strtotime('2012-08-24 02:08:03');

我的答案为1345766883

如果时间是13458101671345810187,请在strtotime&中给出正确的时间。日期()。

有什么问题?

1 个答案:

答案 0 :(得分:10)

格式错误。

mNumeric representation of a month, with leading zeros

iMinutes with leading zeros

使用以下格式:

'Y-m-d h:i:s'

参考:http://php.net/manual/en/function.date.php