PHP strtotime转换在某些日期时间不起作用

时间:2015-08-06 20:45:52

标签: php datetime strtotime

我正在尝试从我的日期时间条目(从不为null)对Web服务结果集进行strtotime。

当循环和cnoverting时,我发现许多人无法使用strtotime进行转换。问题是什么?有效的和无效的格式没有区别。

1431109502 - 08-05-2015 13:25:02
- 06-15-2015 12:05:32 -- Didn't work (any that start with - didn't convert)
- 06-25-2015 11:30:30
- 06-15-2015 10:58:56
- 06-27-2015 20:33:31
- 06-28-2015 00:13:37
1431054141 - 07-05-2015 22:02:21
- 07-17-2015 07:23:57
- 07-22-2015 02:30:24
1431090998 - 08-05-2015 08:16:38
1433774646 - 08-06-2015 09:44:06

编辑:以下是我尝试获得100%转换的一些代码。

$t = date_create_from_Format( 'd-m-Y H:i:s', trim($arrCurrentAlarms[$i]["DateTime"]) );
$sqldt = $t->format('Y-m-d H:i:s');

给我的输入始终采用以下格式:06-25-2015 11:30:30 (月日小时,分钟秒)

1 个答案:

答案 0 :(得分:3)

那是因为strtotime猜测你的约会错了:

date('r', strtotime('08-05-2015 13:25:02')) -> Fri, 08 May 2015 13:25:02 -0500
date('r', strtotime('06-25-2015 11:30:30')) -> Wed, 31 Dec 1969 18:00:00 -0600

现在请注意,第一个值是5月8日:strtotime正在考虑您的日期为dd-mm-yyyy,当您确实有mm-dd-yyyy时。

请注意第二个日期是如何在1969年12月出现的 - 这是整数0(又名布尔值为FALSE)如何在我的特定时区出现的日期。对于 FAILURE 为FALSE,因为日历中没有25个月。

由于猜测错误,您必须改为date_create_from_format() TELL php您的日期格式。