编程语言
首页 > 编程语言> > PHP 时间计算(距离现在多长时间)

PHP 时间计算(距离现在多长时间)

作者:互联网

function format_date($time){
    $t=time()-$time;
    $f=array(
        '31536000'=>'年',
        '2592000'=>'个月',
        '604800'=>'星期',
        '86400'=>'天',
        '3600'=>'小时',
        '60'=>'分钟',
        '1'=>'秒'
    );
    foreach ($f as $k=>$v)    {
        if (0 !=$c=floor($t/(int)$k)) {
            return $c.$v.'前';
        }
    }
}
echo format_date(1470610766);

标签:2592000,format,int,距离,60,time,date,PHP,多长时间
来源: https://blog.csdn.net/myydan/article/details/103186451