cgi/uptime/uptime.php
2024-02-07 09:27:22 +01:00

11 lines
207 B
PHP

---
permalink: /cgi/uptime/
---
<?php
$uptime = shell_exec('uptime');
$version = shell_exec('uptime -V');
header('Content-Type: text/plain');
echo('Server ' . substr($version, 0, -1) . ': ' . $uptime);
?>