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.

04-10-25:Sat
03-10-25:Fri
02-10-25:Thu
01-10-25:Wed
30-09-25:Tue
29-09-25:Mon
28-09-25:Sun
27-09-25:Sat
26-09-25:Fri
25-09-25:Thu
24-09-25:Wed
23-09-25:Tue
22-09-25:Mon
21-09-25:Sun
20-09-25:Sat
19-09-25:Fri

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
10-04-2025: Sat
10-05-2025: Sun
10-06-2025: Mon
10-07-2025: Tue
10-08-2025: Wed
10-09-2025: Thu
10-10-2025: Fri
10-11-2025: Sat
10-12-2025: Sun
10-13-2025: Mon
10-14-2025: Tue
10-15-2025: Wed
10-16-2025: Thu
10-17-2025: Fri
10-18-2025: Sat
10-19-2025: Sun
PHP Date Functions Adding Date by using DateInterval Displaying dropdown list to select Month Year & Date
Subscribe to our YouTube Channel here



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




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