php实现显示网站运行时间-秒转换年月日时分秒

2020-12-13 05:36

阅读:254

标签:style   c   color   a   int   com   

 0, "days" => 0, "hours" => 0,
				"minutes" => 0, "seconds" => 0,
		);
		if($time >= 31556926){
			$value["years"] = floor($time/31556926);
			$time = ($time%31556926);
		}
		if($time >= 86400){
			$value["days"] = floor($time/86400);
			$time = ($time%86400);
		}
		if($time >= 3600){
			$value["hours"] = floor($time/3600);
			$time = ($time%3600);
		}
		if($time >= 60){
			$value["minutes"] = floor($time/60);
			$time = ($time%60);
		}
		$value["seconds"] = floor($time);
		return (array) $value;
	}else{
		return (bool) FALSE;
	}
}

// 本站创建的时间
$site_create_time = strtotime(‘2013-05-22 00:00:00‘);
$time = time() - $site_create_time;
$uptime = Sec2Time($time);
?>

本站运行:小时

php实现显示网站运行时间-秒转换年月日时分秒,搜素材,soscw.com

php实现显示网站运行时间-秒转换年月日时分秒

标签:style   c   color   a   int   com   

原文地址:http://www.cnblogs.com/wgx214/p/3737623.html


评论


亲,登录后才可以留言!