KLanding/uptime.php

7 lines
170 B
PHP
Raw Normal View History

2016-03-23 16:03:43 +00:00
<?php
require_once ('WindowsUptime.class.php');
$windowsUptime = new WindowsUptime();
echo "Server Uptime - ";
echo $windowsUptime->uptime(); // Default output format
?>