Connecting Tech Pros Worldwide Forums | Help | Site Map

uptime script for openbsd

streamkid
Guest
 
Posts: n/a
#1: Apr 10 '07
hello..
could anyone please help me build a uptime script for openbsd?
i tried phpsysinfo, it doesn't work (only uptime works, and that's
around 15k days :p)
i tried these:

<?php
$uptime_output = system("uptime", $uptime_output);
print $uptime_output;
?>

<?php
$uptime = shell_exec("cut -d. f1 /proc/uptime");
$days = floor($uptime/60/60%24);
$hours = $uptime/60/60%24;
$mins = $uptime%60;
$secs = $uptime%60;
echo "current uptime is $days days, $hours hours, $mins minutes and
$secs seconds";
?>

but none of these works.

i 'd appreciate your help
tia, alex


Closed Thread