显示值时出现错误:
$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");