标签: php sql
显示值时出现错误:
$thedate = $row2['date']; echo $thedate;
在php中,这是数据库中的值($ thedate)是“2015-05-05 21:52:31.000”
如何将其格式化以便能够在php页面上以字符串形式显示?目前它显示错误“类DateTime的对象无法转换为字符串”。
答案 0 :(得分:5)
您有DateTime个对象,因此您必须使用format()格式化输出,例如
DateTime
format()
echo $thedate->format("Y-m-d");