显示值时出错:
$thedate = $row2['date']; echo $thedate;
在PHP中,这是数据库中的值($thedate)是“2015-05-05 21:52:31.000”
如何格式化它才能在PHP页面上以字符串形式显示?目前它显示错误“类DateTime的对象无法转换为字符串”.
解决方法:
您有一个DateTime对象,因此您必须使用format()格式化输出,例如
DateTime
format()
echo $thedate->format("Y-m-d");