PHP獲取昨天今天明天的日期

2021-10-05 08:59:32 字數 1601 閱讀 1124

// 今天

$today = date("y-m-d");

// 昨天

$yesterday = date("y-m-d", strtotime("-1 day"));

// 明天

$tomorrow = date("y-m-d", strtotime("+1 day"));

// 一周後

$afterweek = date("y-m-d", strtotime("+1 week"));

// 一周零兩天四小時兩秒後

$datetime = date("y-m-d g:h:s", strtotime("+1 week 2 days 4 hours 2 seconds"));

// 下個星期四

$nextthursday = date("y-m-d", strtotime("next thursday"));

// 上週一

$lastmonday = date("y-m-d", strtotime("last monday"));

// 乙個月前

$monthago = date("y-m-d", strtotime("last month"));

// 乙個月後

$aftermonth = date("y-m-d", strtotime("+1 month"));

// 十年後

$aftertenyears = date("y-m-d", strtotime("+10 year"));

// 指定日期本月第一天

$firstdate = date("y-m-01", strtotime($date));

// 指定日期的昨天

$yesterday = date('y-m-d', strtotime('-1 day', strtotime($date)));

// 指定日期的上月的第一天和最後一天 先拿到本月第一天然後減一天

$firstdate = date("y-m-01", strtotime($date));

$syfirstday = date('y-m-01', strtotime('-1 day', strtotime($firstdate)));

$sylastday = date('y-m-d', strtotime('-1 day', strtotime($firstdate)));

// 獲取7天前的日期

$startdate = date("y-m-d", strtotime($date)-86400*6);

// 昨天所處月份的第一天至昨天

$startdate = date("y-m-01", strtotime("-1 day"));

$enddate = date("y-m-d", strtotime("-1 day"));

/** 獲取兩個時間之間的日期陣列

* @param $startdate

* @param $enddate

* @return array

*/function perioddate($startdate, $enddate)

return $arr;

}

PHP獲取今天 昨天 明天的日期

echo 今天 date y m d echo 昨天 date y m d strtotime 1 day echo 明天 date y m d strtotime 1 day echo 一周後 date y m d strtotime 1 week echo 一周零兩天四小時兩秒後 date y ...

PHP獲取今天 昨天 明天的日期

php view plain copy print?echo 今天 date y m d echo 昨天 date y m d strtotime 1 day echo 明天 date y m d strtotime 1 day echo 一周後 date y m d strtotime 1 wee...

PHP獲取今天 昨天 明天的日期

直接上 在解釋 echo 今天 date y m d echo 昨天 date y m d strtotime 1 day echo 明天 date y m d strtotime 1 day echo 一周後 date y m d strtotime 1 week echo 一周零兩天四小時兩秒後...