php 获取PHP的相对时间(例如'1小时前','昨天','明天','2周')。使用参数$ max_diff,您可以指定数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取PHP的相对时间(例如'1小时前','昨天','明天','2周')。使用参数$ max_diff,您可以指定数字相关的知识,希望对你有一定的参考价值。
<?php
/**
* Get Relative Time in PHP (e.g. '1 hour ago', 'yesterday', 'tomorrow', 'in 2 weeks').
* With the argument `$max_diff` you can specify the number of days from when the
* actual date should be returned witht the format of `$date_format`.
*
* Gist: https://gist.github.com/wottpal/61bc13425a8cedcd88666040d1449bfd
* Fork of: https://gist.github.com/mattytemple/3804571
*/
function relative_time($ts, $max_diff = false, $date_format = 'd/m/Y') {
$max_is_set = $max_diff !== false;
if(!ctype_digit($ts)) {
$ts = strtotime($ts);
}
$diff = time() - $ts;
if($diff == 0) {
return 'now';
} elseif($diff > 0) {
$day_diff = floor($diff / 86400);
if ($max_is_set && $day_diff > $max_diff) return date($date_format, $ts);
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 ($max_is_set && $day_diff > $max_diff) return date($date_format, $ts);
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);
}
}
?>
以上是关于php 获取PHP的相对时间(例如'1小时前','昨天','明天','2周')。使用参数$ max_diff,您可以指定数字的主要内容,如果未能解决你的问题,请参考以下文章
php删除mysql 数据库里时间超过1小时的记录
php如何获取数据库里上一周的数据?
PHP+mysql 查询 今天,昨天,最近7天的数据?
PHP获取时间比实际时间少8小时的问题
php获取上级文件绝对路径
PHP中time获取时间戳为当前时间,它是格林威治时间还是本地时间?