0

我需要使用 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 是上午,而任何 12 及以上的时间都是下午?

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

1 回答 1

0

尝试

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