我在一个名为Film_Release的字段中有一个表,该表的字符串值格式为 2012 年 4月20日 ( 星期五)
我正在遍历,我想在日期时间将它们转换并将其推出到另一个表中。我的第二张表有一个名为Films_Date的列,其格式为DATE。我收到此错误
DateTime类的对象无法转换为字符串
$dateFromDB = $info['Film_Release']; $newDate = DateTime::createFromFormat("l dS F Y",$dateFromDB); //( http:php.net/manual/en/datetime.createfromformat.php)
然后,我通过插入命令将$ newdate插入表中。
为什么会出现这样的错误?
因为$newDate是类型的对象DateTime,而不是字符串。该文档是明确的:
$newDate
DateTime
返回DateTime根据指定格式设置格式的新对象。
如果要从字符串转换DateTime回字符串以更改格式,请DateTime::format最后调用以从中获取格式化的字符串DateTime。
DateTime::format
$newDate = DateTime::createFromFormat("l dS F Y", $dateFromDB); $newDate = $newDate->format('d/m/Y'); // for example