织梦CMS时间格式实现XX秒前、XX分钟前、XX天前

浅末年代Ω 技术杂谈评论14阅读模式

 

if(!function_exists('tranTime'))
{
	function tranTime($time)
	{
		$rtime=date("m-d H:i",$time);
		$htime=date("H:i",$time);
		$etime=time() - $time;
		if ($etime < 1) return '刚刚';
		$interval=array (
			12 * 30 * 24 * 60 * 60=>  ' 年 前',
			30 * 24 * 60 * 60=>  ' 个 月 前',
			7 * 24 * 60 * 60=>  ' 周 前',
			24 * 60 * 60  =>  ' 天 前',
			60 * 60       =>  ' 小 时 前',
			60            =>  ' 分 钟 前',
			1             =>  ' 秒 前'
		);
		foreach($interval as $secs=> $str)
		{
			$d=$etime / $secs;
			if($d >=1)
			{
				$r=round($d);
				return $r . $str;
			}
		};
	}
}

 
浅末年代Ω
  • 本文由 浅末年代Ω 发表于 2024年 3月 14日 21:10:04
  • 转载请务必保留本文链接:https://blog.chunchunhd.com/1653.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证