时间总是显示1970的问题,哪个能帮忙看一下

WBOY
Release: 2016-06-20 12:53:26
Original
2056 people have browsed it

windows 系统MSSQL数据库 , 读取这个时间怎么总显示1970-01-01 07:00:07 ,加了strtotime 也不管用
大家有没有什么好的解决办法

数据库字段数据:





回复讨论(解决方案)

贴出未经处理的,直接从数据库中读取的 date 字段内容

07 3 2015  4:06PM

读到是这样的

怎么处理成为

2015-7-3 这样的

查询时 convert(char, date ,120) as date
你可以尝试改变那个 120,选择最适合你的日期格式

另外 strtotime 不认识这种日期格式,要这样才行

echo date('Y-m-d H:I:s', strtotime('07/03/2015 4:06PM')); //2015-07-03 16:0:00
Copy after login

谢谢版主大人.

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template