我试图将一个
mysql DATETIME转换成m / d / y格式,但下面的
代码不工作,返回12/31/1969而不是有人告诉我如何做到这一点?
$fromMysqL = '2007-10-17 21:46:59'; //this is the result from MysqL DATETIME field
echo date("m/d/Y",$fromMysqL);
我想你真正想要的是这样的:
$fromMysqL = '2007-10-17 21:46:59';
echo date("m/d/Y",strtotime($fromMysqL));
日期的第二个参数是一个时间戳,我认为发生的是PHP将您的字符串视为-1时间戳…因此12/31/1969.
因此,要从日期的字符串版本获取时间戳,您可以使用strtotime
原文链接:https://www.f2er.com/php/138628.html