skip to Main Content

Fungsi Tarikh

Fungsi ini sudah aku ubahsuai menjadi Bahasa Melayu. Gunanya untuk mengformat semula tarikh daripada “27 Ogos 2011” menjadi “2 hari lepas”.

Rujukan: http://www.php.net/manual/en/function.time.php#89415

 

<?php
function nicetime($date)
{
    if(empty($date)) {
        return "No date provided";
    }

    $periods         = array("second", "minute", "hour", "day", "week", "month", "year", "decade");
    $lengths         = array("60","60","24","7","4.35","12","10");

    $now             = time();
    $unix_date         = strtotime($date);

       // check validity of date
    if(empty($unix_date)) {
        return "Bad date";
    }

    // is it future date or past date
    if($now > $unix_date) {
        $difference     = $now - $unix_date;
        $tense         = "ago";

    } else {
        $difference     = $unix_date - $now;
        $tense         = "from now";
    }

    for($j = 0; $difference >= $lengths[$j] && $j < count($lengths)-1; $j++) {
        $difference /= $lengths[$j];
    }

    $difference = round($difference);

    if($difference != 1) {
        $periods[$j].= "s";
    }

    return "$difference $periods[$j] {$tense}";
}

Cara nak guna senang je.

$date = “2009-03-04 17:45”; // format tarikh kepada tarikh seperti ini
$result = nicetime($date); // 2 hari lepas

Sumber: https://code.google.com/p/pumpmyvote/source/browse/trunk/site_v1.0/wordpress/wp-content/themes/artilarieksileri/functions/nicetime.php?r=31

Johari Rahmad

Founder of Kapasitor, owner or Karya Media Sdn Bhd, husband of Nadia & father of Naquibs

Back To Top
×Close search
Search