Getting yesterday and previous days date values

You must have seen how to get today date by using date function. By changing the date value we can get the dates of yesterday. Same way we can extend this to get date values of last 7 days. Or we can extend this to get dates between any to differences.

Let us find out the date value of yesterday.
$m= date("m"); // Month value
$de= date("d"); //today's date
$y= date("Y"); // Year value
echo date('d-m-y:D', mktime(0,0,0,$m,($de-1),$y));
Last seven days date value we can find out by using a for loop. Here is the output of the code.

18-04-24:Thu
17-04-24:Wed
16-04-24:Tue
15-04-24:Mon
14-04-24:Sun
13-04-24:Sat
12-04-24:Fri
11-04-24:Thu
10-04-24:Wed
09-04-24:Tue
08-04-24:Mon
07-04-24:Sun
06-04-24:Sat
05-04-24:Fri
04-04-24:Thu
03-04-24:Wed

Here is the code.
$m= date("m");
$de= date("d");
$y= date("Y");
for($i=0; $i<=15; $i++){
echo date('d-m-y:D',mktime(0,0,0,$m,($de-$i),$y)); 
echo "<br>";
}

Using strtotime()

We can create unixtime stamp from text string by using strtotime()
for($i=0; $i<=15; $i++){

echo date('m-d-Y: D',strtotime("$i day"))."<br>";

}
Output is here
04-18-2024: Thu
04-19-2024: Fri
04-20-2024: Sat
04-21-2024: Sun
04-22-2024: Mon
04-23-2024: Tue
04-24-2024: Wed
04-25-2024: Thu
04-26-2024: Fri
04-27-2024: Sat
04-28-2024: Sun
04-29-2024: Mon
04-30-2024: Tue
05-01-2024: Wed
05-02-2024: Thu
05-03-2024: Fri
PHP Date Functions Adding Date by using DateInterval Displaying dropdown list to select Month Year & Date
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com







    bhanu

    30-09-2009

    thank you for help.it very help
    siswoutomo

    28-12-2009

    Very good this post, thank lot of
    James

    21-04-2010

    Does this work if the date is 4th of January (for example)
    smo

    02-05-2010

    Yes this will work perfectly. Try with March 1st of 2008 also. For testing you need to change the date of your PC or server.
    kalpana

    15-01-2013

    thanks you so much.It was so helpful

    Post your comments , suggestion , error , requirements etc here





    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer