How to Change Date Format in Codeigniter?

By Hardik Savani November 5, 2023 Category : PHP Codeigniter

I would like to show you how to convert date format in php codeigniter 3 framework. we will change date format yyyy-mm-dd (Y-m-d) to dd-mm-yyyy (d-m-Y) with example.

we almost need to display date on any module or in detail page, so in this post i will give you simple example to change date formate in codeigniter. we will use core php function strtotime() and date() for convert date format.

i will share simple example to convert date format in codeigniter and also you can simply create helper function, so you can use same code repeatedly. So let's see bellow easy example.

Simple Example:

$sampleDate = '2019-01-02';

$convertDate = date("d-m-Y", strtotime($sampleDate));

print_r($convertDate);

Output:

01-02-2019

You can also create simple helper and repeatedly use it.

Helper Function:

if(!function_exists('changeDateFormat'))

{

function changeDateFormat($format = 'd-m-Y', $originalDate)

{

return date($format, strtotime($originalDate));

}

}

Use Helper Function:

<?php

echo changeDateFormat('d-m-Y',$user->created_at)

?>

I hope it can help you...

Shares