PHP函数,返回多少分钟,多少秒,多少小时前
Posted 认真生活、快乐工作 - 马云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP函数,返回多少分钟,多少秒,多少小时前相关的知识,希望对你有一定的参考价值。
/**
* 将时间转换为几秒前、几分钟前、几小时前、几天前
* @param $in_time 需要转换的时间字符串
* @return string
*/
public static function timeTran($in_time)
{
$now_time = time();
$in_time = strtotime($in_time);
$dur = $now_time - $in_time;
if ($dur < 0) {
return $in_time;
}
if ($dur < 60) {
return $dur . ‘秒前‘;
}
if ($dur < 3600) {
return floor($dur / 60) . ‘分钟前‘;
}
if ($dur < 86400) {
return floor($dur / 3600) . ‘小时前‘;
}
if ($dur < 259200) { // 3天内
return floor($dur / 86400) . ‘天前‘;
} else {
return $in_time;
}
}
以上是关于PHP函数,返回多少分钟,多少秒,多少小时前的主要内容,如果未能解决你的问题,请参考以下文章
PHP time()格式 - 多少秒/分钟/小时/天/年/几十年前
使用joda-time工具类 计算时间相差多少 天,小时,分钟,秒
使用joda-time工具类 计算时间相差多少 天,小时,分钟,秒
作业:1.12假设一个跑步者1小时40分钟35秒 内跑了24英里。编写一个程序显示以每小时多少公里为单位的平均速度值(注意,1英里等于1.6公里。)