change date format in codeigniter
change date format in codeigniter I have this view <?PHP $no = 0; foreach ($dt as $key => $row) { $no++; ?> <td style="text-align:center;"> <?=$row->TANGGAL_KADALUARSA;?> </td> with result 21/11/2018 0:00:00 What I want is to change the format into 21 December 2018 This has been asked many times google search how to change date format codeigniter – Mr. ED Sep 3 at 3:07 @Mr.ED yes I've search it before and I've tried it also but none is working – Faiz Sep 3 at 3:13 and what did you try faiz ? you didn't show anything what you tried - because as ED already said - this was asked and answered so many times here ... e.g. stackoverflow.com/questions/3542162/… – sintakonte Sep 3 at 7:30 Possible duplicate of Date Time create from format – sintakonte Sep 3 at 8:41 5 Answers 5 Try this $date = "21/11/2018 0:00:00"; echo date('d F Y', strtotime(str_replace('/', '-', $date