How to Get the Previous Month’s Date using PHP?
In this tutorial, we will learn How to Get the Previous Month Date using PHP?. I will give you the PHP date function to get the previous month’s date. You learned how to get the previous month in PHP using the date function. if you have a question about PHP to get the previous month’s date, then you are right place. you will learn how to get the previous month’s data using PHP. Let’s see below example PHP get previous month date.
I will give you an example of how to get the previous month date using PHP. so don’t waste time to see the below examples:
Consent
- Get Previous Month from Current Date
- Get Previous Month from Given Date
Get Previous Month from Current Date
<?php
$new_date = date('Y-m-d', strtotime('-1 month'));
echo $new_date;
?>
Output: 2021-10-28
Get Previous Month from Given Date
<?php
$date = "2021-12-01";
$new_date = date('Y-m-d', strtotime($date. ' -1 months'));
echo $new_date;
?>
Output: 2021-11-01