你如何在PHP中将日期时间转换为oracle日期时间格式

时间:2013-10-22 14:57:51

标签: php oracle

我需要使用php将日期时间插入到oracle表中。

我的日期字符串是这种格式:

'2013-10-22 08:02:30', '2013-10-22 13:02:30', '2013-10-22 21:02:30' etc.

当我在php中使用这种格式时,

$ date1 = to_date('2013-10-22 08:02:30','YYYY-MM-DD HH24:MI:SS')

我看到oracle表中的数据是PM格式。这怎么可能?如何更改to_date以便任何12是am,任何12岁以上的时间是pm?

$date1=to_date('2013-10-22 00:02:30','YYYY-MM-DD HH24:MI:SS')

1 个答案:

答案 0 :(得分:0)

尝试

$date1 = date("Y-m-d H:i:s", strtotime('2013-10-22 00:02:30'));