PHP函数,返回多少分钟,多少秒,多少小时前
2021-03-06 09:29
阅读:497
标签:时间 rto 需要 几分钟 else time UNC stat public PHP函数,返回多少分钟,多少秒,多少小时前 标签:时间 rto 需要 几分钟 else time UNC stat public 原文地址:https://www.cnblogs.com/jiqing9006/p/12896575.html/**
* 将时间转换为几秒前、几分钟前、几小时前、几天前
* @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
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:PHP函数,返回多少分钟,多少秒,多少小时前
文章链接:http://soscw.com/index.php/essay/60804.html
文章标题:PHP函数,返回多少分钟,多少秒,多少小时前
文章链接:http://soscw.com/index.php/essay/60804.html
评论
亲,登录后才可以留言!