PHP bir ISO8601 timestamp bir unix zaman damgası dönüştürmek nasıl?

3 Cevap php

Ben mysql unix zaman damgası ayıklamak ve ISO8601 zaman damgası dönüştürmek çalışıyorum. Ben facebook gibi (içine tarihi biçimlendirmek veya yığın taşması-benzeri :) '30 dakika önce 'yerine kesin tarih ve saati görüntüleme amacıyla gerek. Herkes onunla vurmuştur?

3 Cevap

$timestamp = '1268932078';

$iso8601 = date('c', $timestamp);

Ama örneğin, kendi rulo istemiyorsanız, bu size yardımcı olmak için yerleşik işlevleri vardır: DateTime::diff.

Facebook Like Zaman Formatı:

A time difference function that *outputs the time passed in facebook's* style: 1 day ago, or 4 months ago.

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

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);
    if(empty($unix_date)) {    
        return "Bad 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}";
}

$timestamp = '1268932078';
$result = nicetime($timestamp); 
echo $result;  //40 years ago

PHP Pretty Date kütüphanesi kullanmayı deneyin, o aradığınız işlevselliğe sahiptir.