Skip to content

Instantly share code, notes, and snippets.

View agungdh's full-sized avatar

Agung Sapto Margono Dh agungdh

View GitHub Profile
@agungdh
agungdh / script.php
Created May 7, 2019 00:44 — forked from guangrei/script.php
[PHP] pengecekan tanggal merah berdasarkan hari libur nasional dan hari minggu
<?php
//default time zone
date_default_timezone_set("Asia/Jakarta");
//fungsi check tanggal merah
function tanggalMerah($value) {
$array = json_decode(file_get_contents("https://raw.githubusercontent.com/guangrei/Json-Indonesia-holidays/master/calendar.json"),true);
//check tanggal merah berdasarkan libur nasional
if(isset($array[$value]))
: echo"tanggal merah ".$array[$value]["deskripsi"];
@agungdh
agungdh / leet.php
Created February 14, 2018 04:45 — forked from hinzundcode/leet.php
Leetspeak Generator
<?php
header('Content-type: text/plain; charset=utf8');
$input = "hab me eben nen leet-speak generator geschrieben..";
$words = array(
'one' => 1,
'to' => 2,
'too' => 2,