我正在尝试生成日期(从现在起 7 个月后)这是我的代码
$cdate = new DateTime("+7 months");
$cdate->modify("-" . ($cdate->format('j')-1) . " days");
$expiry_date= $cdate->format('Y-m-d');
$expiry_date = strtotime($expiry_date);
这给出了错误:
PHP Catchable fatal error:
Object of class DateTime could not be converted to string
它正在与be before...有什么问题?