0

这是我的代码。我正在尝试添加 $Rows['howfar'] 在这种情况下。可以说是2。

所以我试图在我的数据库中添加两周的日期:

//$Rows['howfar'] = 2 weeks for example.
    $NextDate = $Rows['Date'], strtotime("+{$Rows['howfar']} weeks"));

我该怎么做?

4

1 回答 1

0
$NextDate = date('Y-m-d', strtotime($Rows['Date'] . " +" . $Rows['howfar'] . " weeks"));
于 2012-12-21T00:50:27.667 回答