如何在PHP中将unix时间戳转换为ISO8601时间戳?

时间:2021-02-19 13:40:46

I am trying to extract unix timestamp from mysql and convert it to ISO8601 timestamp. I need it in order to format date into facebook-like(or stack-overflow-like:) '30 minutes ago' instead of displaying the exact date and time. Has anyone dealt with it?

我试图从mysql中提取unix时间戳并将其转换为ISO8601时间戳。我需要它,以便将日期格式化为类似Facebook(或堆栈溢出类似:) '30分钟前',而不是显示确切的日期和时间。有人处理过吗?

2 个解决方案

#1


16  

$timestamp = '1268932078';

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

But there are built-in functions to help you with this if you don't want to roll your own, e.g.: DateTime::diff.

但是如果你不想自己动手,有内置函数来帮助你,例如:DateTime :: diff。

#2


4  

Facebook Like Time Format:

Facebook喜欢时间格式:

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

一个时差功能,输出在facebook风格中传递的时间:1天前或4个月前。

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

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}";
}

// convert timestamp to date ISO8601 
$timestamp = date('c', '1268932078');
// convert to nice date
echo nicetime($timestamp);   //40 years ago

#1


16  

$timestamp = '1268932078';

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

But there are built-in functions to help you with this if you don't want to roll your own, e.g.: DateTime::diff.

但是如果你不想自己动手,有内置函数来帮助你,例如:DateTime :: diff。

#2


4  

Facebook Like Time Format:

Facebook喜欢时间格式:

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

一个时差功能,输出在facebook风格中传递的时间:1天前或4个月前。

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

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}";
}

// convert timestamp to date ISO8601 
$timestamp = date('c', '1268932078');
// convert to nice date
echo nicetime($timestamp);   //40 years ago