Skocz do zawartości
Zaloguj się, aby obserwować  
srok@

Jak pokazywać uptime?

Polecane posty

Jak zrobić pokazywanie uptimu serwera tak jak to jest na np. linuxpl.com ?

Udostępnij ten post


Link to postu
Udostępnij na innych stronach
Gość patrick
<?php 

// format the uptime in case the browser doesn't support dhtml/javascript

// static uptime string

function format_uptime($seconds) {

 $secs = intval($seconds % 60);

 $mins = intval($seconds / 60 % 60);

 $hours = intval($seconds / 3600 % 24);

 $days = intval($seconds / 86400);

 

 if ($days > 0) {

   $uptimeString .= $days;

   $uptimeString .= (($days == 1) ? " day" : " days");

 }

 if ($hours > 0) {

   $uptimeString .= (($days > 0) ? ", " : "") . $hours;

   $uptimeString .= (($hours == 1) ? " hour" : " hours");

 }

 if ($mins > 0) {

   $uptimeString .= (($days > 0 || $hours > 0) ? ", " : "") . $mins;

   $uptimeString .= (($mins == 1) ? " minute" : " minutes");

 }

 if ($secs > 0) {

   $uptimeString .= (($days > 0 || $hours > 0 || $mins > 0) ? ", " : "") . $secs;

   $uptimeString .= (($secs == 1) ? " second" : " seconds");

 }

 return $uptimeString;

}



// read in the uptime (using exec)

$uptime = exec("cat /proc/uptime");

$uptime = split(" ",$uptime);

$uptimeSecs = $uptime[0];



// get the static uptime

$staticUptime = "Server Uptime: ".format_uptime($uptimeSecs);

?>

<html>

<head>

<script language="javascript">

<!--

var upSeconds=<?php echo $uptimeSecs; ?>;

function doUptime() {

var uptimeString = "Server Uptime: ";

var secs = parseInt(upSeconds % 60);

var mins = parseInt(upSeconds / 60 % 60);

var hours = parseInt(upSeconds / 3600 % 24);

var days = parseInt(upSeconds / 86400);

if (days > 0) {

 uptimeString += days;

 uptimeString += ((days == 1) ? " day" : " days");

}

if (hours > 0) {

 uptimeString += ((days > 0) ? ", " : "") + hours;

 uptimeString += ((hours == 1) ? " hour" : " hours");

}

if (mins > 0) {

 uptimeString += ((days > 0 || hours > 0) ? ", " : "") + mins;

 uptimeString += ((mins == 1) ? " minute" : " minutes");

}

if (secs > 0) {

 uptimeString += ((days > 0 || hours > 0 || mins > 0) ? ", " : "") + secs;

 uptimeString += ((secs == 1) ? " second" : " seconds");

}

var span_el = document.getElementById("uptime");

var replaceWith = document.createTextNode(uptimeString);

span_el.replaceChild(replaceWith, span_el.childNodes[0]);

upSeconds++;

setTimeout("doUptime()",1000);

}

// -->

</script>

</head>

<body onLoad="doUptime();">



<!-- Uses the DIV tag, but SPAN can be used as well -->

<div id="uptime" style="font-weight:bold;"><?php echo $staticUptime; ?></div>



</body>

</html>

Udostępnij ten post


Link to postu
Udostępnij na innych stronach

Bądź aktywny! Zaloguj się lub utwórz konto

Tylko zarejestrowani użytkownicy mogą komentować zawartość tej strony

Utwórz konto

Zarejestruj nowe konto, to proste!

Zarejestruj nowe konto

Zaloguj się

Posiadasz własne konto? Użyj go!

Zaloguj się

Zaloguj się, aby obserwować  

×