×
您的位置: 首页 > 编程笔记

PHP:从时间戳生成相对日期/时间(PHP: producing relative date/time from timestamps)

PHP 时间:2020-06-19  查看:1509   收藏

I'm basically trying to convert a Unix timestamp (the time() function) to a relative date/time that's both compatible with past and future date. So outputs could be:

2 weeks ago

1 hour and 60 minutes ago

15 minutes and 54 seconds ago

after 10 minutes and 15 seconds

First I tried to code this, but made a huge unmaintainable function, and then I searched the internet for a couple of hours, yet all I can find are scripts that produce only one part of the time (e.h: "1 hour ago" without the minutes).

Do you have a script that already does this?

解决方案

This function gives you "1 hour ago" or "Tomorrow" like results between 'now' and 'specific timestamp'.

function time2str($ts)
{
    if(!ctype_digit($ts))
        $ts = strtotime($ts);

    $diff = time() - $ts;
    if($diff == 0)
        return 'now';
    elseif($diff > 0)
    {
        $day_diff = floor($diff / 86400);
        if($day_diff == 0)
        {
            if($diff < 60) return 'just now';
            if($diff < 120) return '1 minute ago';
            if($diff < 3600) return floor($diff / 60) . ' minutes ago';
            if($diff < 7200) return '1 hour ago';
            if($diff < 86400) return floor($diff / 3600) . ' hours ago';
        }
        if($day_diff == 1) return 'Yesterday';
        if($day_diff < 7) return $day_diff . ' days ago';
        if($day_diff < 31) return ceil($day_diff / 7) . ' weeks ago';
        if($day_diff < 60) return 'last month';
        return date('F Y', $ts);
    }
    else
    {
        $diff = abs($diff);
        $day_diff = floor($diff / 86400);
        if($day_diff == 0)
        {
            if($diff < 120) return 'in a minute';
            if($diff < 3600) return 'in ' . floor($diff / 60) . ' minutes';
            if($diff < 7200) return 'in an hour';
            if($diff < 86400) return 'in ' . floor($diff / 3600) . ' hours';
        }
        if($day_diff == 1) return 'Tomorrow';
        if($day_diff < 4) return date('l', $ts);
        if($day_diff < 7 + (7 - date('w'))) return 'next week';
        if(ceil($day_diff / 7) < 4) return 'in ' . ceil($day_diff / 7) . ' weeks';
        if(date('n', $ts) == date('n') + 1) return 'next month';
        return date('F Y', $ts);
    }
}

我基本上是想将Unix时间戳(time()函数)转换为既可与过去日期兼容又可与将来日期兼容的相对日期/时间。因此输出可能是:




2周前



1小时60分钟15分钟54秒前





10分钟15秒后



首先,我尝试编写此代码,但是做了一个无法维护的巨大功能,然后我在互联网上搜索了几个小时,但我所能找到的只是脚本仅产生一部分时间(例如: 1小时前,没有分钟)。



您是否已经有执行此操作的脚本?


解决方案

此功能为您提供 1小时前或明天,例如现在和特定时间戳之间的结果。



 函数time2str($ ts)
 {
 if(!ctype_digit($ ts))
 $ ts = strtotime($ ts); 

 $ diff = time()-$ ts; 
 if($ diff == 0)
返回 now; 
 elseif($ diff> 0)
 {
 $ day_diff = floor($ diff / 86400); 
 if($ day_diff == 0)
 {
 if($ diff< 60)返回现在; 
 if($ diff< 120)返回 1分钟前; 
 if($ diff< 3600)return floor($ diff / 60)。 ' 几分钟前'; 
 if($ diff< 7200)返回 1小时前; 
 if($ diff< 86400)return floor($ diff / 3600)。 ‘小时前’; 
} 
 if($ day_diff == 1)返回昨天; 
 if($ day_diff< 7)返回$ day_diff。 ' 几天前'; 
 if($ day_diff< 31)返回ceil($ day_diff / 7)。 ' 几周前'; 
 if($ day_diff< 60)返回上个月; 
返回日期( F Y,$ ts); 
} 
 else 
 {
 $ diff = abs($ diff); 
 $ day_diff = floor($ diff / 86400); 
 if($ day_diff == 0)
 {
 if($ diff< 120)一分钟后返回; 
 if($ diff< 3600)返回 in。 floor($ diff / 60)。 ' 分钟'; 
 if($ diff< 7200)返回在一小时内; 
 if($ diff< 86400)返回 in。 floor($ diff / 3600)。 ' 小时'; 
} 
 if($ day_diff == 1)返回明天; 
 if($ day_diff< 4)返回日期('l',$ ts); 
 if($ day_diff< 7 +(7-date('w’)))返回下周; 
 if(ceil($ day_diff / 7)< 4)返回 in。 ceil($ day_diff / 7)。 周; 
 if(date('n',$ ts)== date('n')+ 1)返回下个月; 
返回日期( F Y,$ ts); 
} 
}


 

0% (0)
0% (0)