<?php
function OtherDAY($start,$total){
$date = new DateTime("$start");
$date->add(new DateInterval('P'.$total.'D'));
$finish=$date->format('Y-m-d');
return $finish;
}
$start=date("Y-m-d");
$otherday=OtherDAY("$start",'15');
die($otherday);`
?>`
在我杀死它后它显示“不是日期格式”,如何解决这个问题?