如何计算“时间前”在PHP中

可能重复:
PHP如何查找自日期时间以来的时间?

我如何得到时间之前张贴。 只是例如3分钟前或超过24小时前和2天前超出2012-07-13 17:55:59。


<?php
function get_timeago( $ptime )
{
    $etime = time() - $ptime;

    if( $etime < 1 )
    {
        return 'less than 1 second ago';
    }

    $a = array( 12 * 30 * 24 * 60 * 60  =>  'year',
                30 * 24 * 60 * 60       =>  'month',
                24 * 60 * 60            =>  'day',
                60 * 60             =>  'hour',
                60                  =>  'minute',
                1                   =>  'second'
    );

    foreach( $a as $secs => $str )
    {
        $d = $etime / $secs;

        if( $d >= 1 )
        {
            $r = round( $d );
            return 'about ' . $r . ' ' . $str . ( $r > 1 ? 's' : '' ) . ' ago';
        }
    }
}
?>


Usage:   

   <?php 


     echo get_timeago( $timestamp );

   ?>

另外尝试strtotime()

链接地址: http://www.djcxy.com/p/58979.html

上一篇: How to calculate "time ago" in php

下一篇: date to time ago ? without useing strtime?