作者:jxxpoo | 来源:互联网 | 2014-03-27 08:08
apache日志中的日期格式如何转换成mysql中的datetime需要添加apachelog记录中的日期到数据库中,数据库字段类型为datetime,如何转换下面的字符串到日期格式?15/Apr/2012:23:54:05-0700转换
apache日志中的日期格式如何转换成mysql中的datetime
需要添加apache log记录中的日期到数据库中,数据库字段类型为datetime,如何转换下面的字符串到日期格式?
15/Apr/2012:23:54:05 -0700
转换成不带时区的datetime格式,时区转换成UTC时间。
------解决方案--------------------
PHP code
echo date('Y-m-d H:i:s', strtotime('15/Apr/2012:23:54:05 -0700')); //2012-04-16 02:54:05