Skip to content

All topics  /  CodeIgniter

How to Get Previous Month From Date In Codeigniter?

CodeIgniter ·

Hi Guys,

In this example,I will learn you how to get previous month from date in codeigniter.you can easy and simply get previous month from date in codeigniter.

we will show you how to get previous month from date in codeigniter.if you want to get previous month from date in codeigniter then you can use bellow example.

Example:


public function index()
{
    $date = "2020-01-11";
    $newdate = date("Y-m-d", strtotime ( '-1 month' , strtotime ( $date ) )) ;
    echo $newdate;
}

Output:

2019-12-11

It will help you...