gpt4 book ai didi

php - 计算并显示日期为 'secs ago' 、 'mins ago' 、 'hours ago' 等

转载 作者:行者123 更新时间:2023-11-29 01:19:15 25 4
gpt4 key购买 nike

我有一个小型定制博客类型的东西,想要在评论旁边显示发布日期。

我想按照以下格式进行操作:

23 秒前发布
发布于 43 分钟前
发布于 1 小时前
发表于 1 天前
发布于 2 周前
...可能不会比这更长,因为不会显示超过一个月的文章。

我可以在 MySQL 中以日期时间或时间戳格式存储实际日期...

有谁知道我可以用来执行此操作的现有 PHP 函数吗?我还没有真正找到适合的东西。

最佳答案

您可以使用以下函数并将其调用为 format_interval(time() - $saved_timestamp),其中 $saved_timestamp 是您所在的“事件”的时间戳有兴趣。

function format_interval($interval, $granularity = 2) {
$units = array('1 year|@count years' => 31536000, '1 week|@count weeks' => 604800, '1 day|@count days' => 86400, '1 hour|@count hours' => 3600, '1 min|@count min' => 60, '1 sec|@count sec' => 1);
$output = '';
foreach ($units as $key => $value) {
$key = explode('|', $key);
if ($interval >= $value) {
$floor = floor($interval / $value);
$output .= ($output ? ' ' : '') . ($floor == 1 ? $key[0] : str_replace('@count', $floor, $key[1]));
$interval %= $value;
$granularity--;
}

if ($granularity == 0) {
break;
}
}

return $output ? $output : '0 sec';
}

$granularity 是要显示的不同单位的数量。例如,format_interval(32745600) 将返回 “1 年 2 周”

我展示的代码是在 Drupal 7 中实现的 format_interval() 的简化版本,在 GNU General Public License v2 or successive 许可下发布。 (另见 COPYRIGHT.txt 。)
我去掉了 Drupal 非常特殊的部分,包括处理字符串国际化的部分,并将代码更改为使用纯 PHP 函数。

关于php - 计算并显示日期为 'secs ago' 、 'mins ago' 、 'hours ago' 等,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2452010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com