Zaman php fonksiyonu ve 1969

0 Cevap

Bir kullanıcı bir girdi eklemek zaman için veritabanında zaman kazanmak için çalışıyorum. Ben 1969 etmektedir () işlevi baskı (veya döner) 1277155717 saati çalıştırmak her zaman.

Bu anda, bugün gerçek tarihini gösteren bir şekilde veritabanına zaman kazanmak için bir yol olup olmadığını merak ediyordum.

Ben fonksiyonunu kullanıyorum

/* Works out the time since the entry post, takes a an argument in unix time (seconds) */
function time_since($original) {
    // array of time period chunks
    $chunks = array(
        array(60 * 60 * 24 * 365 , 'year'),
        array(60 * 60 * 24 * 30 , 'month'),
        array(60 * 60 * 24 * 7, 'week'),
        array(60 * 60 * 24 , 'day'),
        array(60 * 60 , 'hour'),
        array(60 , 'minute'),
    );

    $today = time(); /* Current unix time  */
    $since = $today - $original;

    // $j saves performing the count function each time around the loop
    for ($i = 0, $j = count($chunks); $i < $j; $i++) {

        $seconds = $chunks[$i][0];
        $name = $chunks[$i][1];

        // finding the biggest chunk (if the chunk fits, break)
        if (($count = floor($since / $seconds)) != 0) {
            // DEBUG print "<!-- It's $name -->\n";
            break;
        }
    }

    $print = ($count == 1) ? '1 '.$name : "$count {$name}s";

    if ($i + 1 < $j) {
        // now getting the second item
        $seconds2 = $chunks[$i + 1][0];
        $name2 = $chunks[$i + 1][1];

        // add second item if it's greater than 0
        if (($count2 = floor(($since - ($seconds * $count)) / $seconds2)) != 0) {
            $print .= ($count2 == 1) ? ', 1 '.$name2 : ", $count2 {$name2}s";
        }
    }
    return $print;
}

Yorum yayınlanmıştır ve ben (fonksiyon zamanın değerini geçmesi zaman) (6 ay önce, 40 yıl) dönen beri dakika sayısını, yıl, ay, vb görüntülemek için;

0 Cevap