Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get the previous 3 months in php

Tags:

php

how to get the previous 3 months in php ex(If i say DEC.. It should display the previous 3 months i.e., OCT NOV DEC)

like image 892
Waseem Avatar asked Nov 25 '25 07:11

Waseem


1 Answers

You can use the strtotime function like this:

echo date('M', strtotime('-3 month'));

So you specify previous dates with minus sign.

echo date('M', strtotime('0 month'));
echo date('M', strtotime('-1 month'));
echo date('M', strtotime('-2 month'));
echo date('M', strtotime('-3 month'));

Results:

Dec
Nov
Oct
Sep

You can do the same if you are using a loop like this:

for ($i = -3; $i <= 0; $i++){
  echo date('M', strtotime("$i month"));
}

Results:

Sep
Oct
Nov
Dec

Check out the documentation too see many other friendly date and time keywords strtotime supports:

  • http://php.net/manual/en/function.strtotime.php
like image 129
Sarfraz Avatar answered Nov 27 '25 20:11

Sarfraz



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!