How to get Year Name from date in Codeigniter?

05-Jan-2021

.

Admin

Hi Guys,

In this example,I will learn you how to get year name from date using codeigniter.you can easy and simply get year name from date using codeigniter.

The year number can be converted into a year name by using codeigniter.this tutorial will give you example get year name from date using codeigniter.

Example:


public function index()

{

echo date('Y', strtotime('2016-05-17'));

}

Output:

2016

It will help you...

#Codeigniter