欢迎光临
我们一直在努力

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

 

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;
			}
		};
	}
}
赞(0) 打赏
未经允许不得转载:HU网络 » 织梦CMS时间格式实现XX秒前、XX分钟前、XX天前

觉得文章有用就打赏一下文章作者

非常感谢你的打赏,我们将继续提供更多优质内容,让我们一起创建更加美好的网络世界!

支付宝扫一扫

微信扫一扫

登录

找回密码

注册