Skip to content

Instantly share code, notes, and snippets.

View januaranas's full-sized avatar

Januar Anas januaranas

View GitHub Profile
@januaranas
januaranas / function_helper.php
Last active June 28, 2021 20:32
Codeigniter Helper merubah tanggal indonesia ke format SQL ( 01 februari 2015 > 2015-02-01 ) dan sebaliknya
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
//membuat format tanggal Indonesia
function TanggalIndo($date) {
$BulanIndo = array("Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember");
$tahun = substr($date, 0, 4);
$bulan = substr($date, 5, 2);