贴出未经处理的,直接从数据库中读取的 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
谢谢版主大人.