我有當前日期。何三天後找到日期。我使用我的笨控制器是 -如何在3天后查找日期
public function index()
{
date_default_timezone_set('Asia/Kolkata');
$Curr_Date = date('Y/m/d');
$today_dt = new DateTime($Curr_Date);
}
我有當前日期。何三天後找到日期。我使用我的笨控制器是 -如何在3天后查找日期
public function index()
{
date_default_timezone_set('Asia/Kolkata');
$Curr_Date = date('Y/m/d');
$today_dt = new DateTime($Curr_Date);
}
$newDate = new DateTime(strtotime("+3 days"));
我認爲這可以幫助你......
請參閱編輯的文本,而不是我寫的第一個文本。 –
漂亮的直線前進。
public function index()
{
date_default_timezone_set('Asia/Kolkata');
$today_dt = new DateTime();
$in3days = new DateTime();
$in3days->add(new DateTimeInterval("PD3"));
}
,或者您可以使用strtotime
$in3days = new DateTime(strtotime("+3 days"));
結帳的[修改](http://php.net/manual/en/datetime.modify.php:您可以使用DateTime類做到這一點)DateTime的方法。 –
我不同意重複,因爲該線程已超過6年,並顯示過時的方法。只有在最底層才能找到推薦的方法,即使用DateTime的add()方法。 – ChristianF
抱歉Shaktimaan。 – devendra