1
<?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);`
?>`

在我杀死它后它显示“不是日期格式”,如何解决这个问题

4

1 回答 1

0

改变:

$date = new DateTime("$start");

$date = new DateTime($start);

$otherday=OtherDAY("$start",'15');

$otherday=OtherDAY($start,'15');

您没有传递变量的值,因为您将其作为字符串传递

于 2012-11-30T00:42:53.510 回答