Skip to content

Instantly share code, notes, and snippets.

@abdul-hafizh
Last active March 27, 2017 02:22
Show Gist options
  • Save abdul-hafizh/82ed45409a9965e3749bb31f89bb6bd6 to your computer and use it in GitHub Desktop.
Save abdul-hafizh/82ed45409a9965e3749bb31f89bb6bd6 to your computer and use it in GitHub Desktop.
merubah format tanggal mysql menjadi format tanggal Indonesia
function tanggalIndo($tgl) {
$namaBulan = array(1=>"Januari","Februari","Maret","April","Mei","Juni","Juli",
"Agustus","September","Oktober","November","Desember");
$date = explode("-",$tgl);
$bulan = intval($date[1]);
$tanggal = $date[2]." ".$namaBulan[$bulan]." ".$date[0];
return $tanggal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment