简体   繁体   中英

Get the date of one week from today

如何以以下格式获取从今天起一周的日期:YYYY-MM-DD?

Try:

date("Y-m-d", strtotime("+1 week"));

This will output:

2015-12-31

If today is 2015-12-24

Just so Charles' prediction is wrong, here's a PHP 5.3+ example:

$now = new DateTime;
$interval = new DateInterval('P1W')
$next_week = $now->add($interval);
echo $next_week->format('Y-m-d');

or in slightly more compact form:

$now = new DateTime();
echo $now->add(new DateInterval('P1W'))->format('Y-m-d');

adding days, weeks, months to any date

 $date = date("Y-m-d");// current date

 $date = strtotime(date("Y-m-d", strtotime($date)) . " +1 day");

 $date = strtotime(date("Y-m-d", strtotime($date)) . " +1 week");

 $date = strtotime(date("Y-m-d", strtotime($date)) . " +2 week");

 $date = strtotime(date("Y-m-d", strtotime($date)) . " +1 month");

 $date = strtotime(date("Y-m-d", strtotime($date)) . " +30 days");
<?php
$nextWeek = time() + (7 * 24 * 60 * 60);
echo 'Next Week: '. date('Y-m-d', $nextWeek) ."\n";

One missing from Charles prediction, straight from the horses mouth, example #1

    for ($i=0 ; $i < 7 ;$i++)
    {
        $date[]=date('Y-m-d',strtotime("+{$i} day",time()));
    }

    print_r($date);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM