Will any one tell me how to get the current month and previous three months using PHP
For example:
echo date("y:M:d");
output will be: 09:Oct:20
But i need:
August
September
October
as the Output.
Thanks in advance...
Fero
|
|
|
for full textual representation of month you need to pass "F":
for previous month you can use
|
|||
|
this month
previous months
|
|||||||||||
|
|
Watch out for the FUAH! The other answers will fail when performed on the 31st of the month. Use this instead:
For more, see my answer here |
|||
|
|
|
If you want to be OOP about it, try this:
outputs:
|
|||
|
|
|
Try using the built in
|
||||
|
|
|
||||
|
|
|
|||||||
|
|
||||
|
|