程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php實現顯示網站運行時間-秒轉換年月日時分秒

php實現顯示網站運行時間-秒轉換年月日時分秒

編輯:關於PHP編程

<?php
// 設置時區
date_default_timezone_set('Asia/Shanghai');
/**
 * 秒轉時間,格式 年 月 日 時 分 秒
 * 
 * @author [email protected]
 * @param int $time
 * @return array|boolean
 */
function Sec2Time($time){
	if(is_numeric($time)){
		$value = array(
				"years" => 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);
?>

本站運行:<span ><?php echo $uptime['years']; ?>年<?php echo $uptime['days']; ?>天<?php echo $uptime['hours']; ?>小時<?php echo $uptime['minutes']; ?>分<?php echo $uptime['seconds']; ?>秒</span>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved