ItSolutionStuff.com

How to Get Previous Month from Date in PHP?

By Hardik Savani • May 14, 2024
PHP

This is a short guide on how to get previous month date in php. Here you will learn php get previous month from given date. i explained simply step by step php get previous month from current date. We will look at example of how to get previous month date in php. So, let's follow few step to create example of how to get previous month in php example.

I will give you very simple example how to previous month date in PHP. so let's see both example with output:

Example 1: PHP Get Previous Month from Current Date

index.php

<?php

$newDate = date('Y-m-d', strtotime('-1 month'));

echo $newDate;

?>

Output:

2021-10-15

Example 2: PHP Get Previous Month from Given Date

index.php

<?php

$date = "2021-02-01";

$newDate = date('Y-m-d', strtotime($date. ' -1 months'));

echo $newDate;

?>

Output:

2021-01-01

i hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Tomorrow Date in PHP?

Read Now →

How to Get Yesterday Date in PHP?

Read Now →

PHP Subtract Seconds from Time Example

Read Now →

How to Subtract Minutes from DateTime in PHP?

Read Now →

How to Subtract Hours from DateTime in PHP?

Read Now →

How to Add Seconds to Time in PHP?

Read Now →

PHP Add Minutes to Time Example

Read Now →

PHP Add Hours to Datetime Example

Read Now →

PHP Subtract Year from Date Example

Read Now →