This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php defined('BASEPATH') OR exit('No direct script access allowed'); | |
| class Welcome extends CI_Controller { | |
| public function index() | |
| { | |
| $this->load->helper('indonesian_date'); | |
| $date = date("Y-m-d"); | |
| //menampilkan tanggal dengan format tanggal indonesia |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| defined('BASEPATH') OR exit('No direct script access allowed'); | |
| if (!function_exists('indonesian_date')) { | |
| function indonesian_date($date) | |
| { | |
| // fungsi atau method untuk mengubah tanggal ke format indonesia | |
| // variabel BulanIndo merupakan variabel array yang menyimpan nama-nama bulan | |
| $indonesian_month = array("Januari", "Februari", "Maret", | |
| "April", "Mei", "Juni", |
NewerOlder