我有一个来自我的数据库的日期字符串,日期是16/11/2010
,它的格式是d/m/Y
,我想像这样修改它。
<?php
$date_from_db= '16/11/2010'; // format is d/m/Y
$date = new DateTime($date_from_db);
$date-> modify('+1 week');
echo $date-> format('d/m/Y') ;
?>
我有这个错误
Fatal error: Uncaught exception 'Exception' with message 'DateTime::__construct(): Failed to parse time string (16/11/2012) at position 0 (1).
我怎样才能解决这个问题?