💻 Тестовое для ТрейдСофт
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
488 B

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PHP script</title>
</head>
<body>
<?php
$sleepTime = mt_rand(1000, 4000);
usleep($sleepTime * 1000);
echo '<p>container hostname (PHP): ' . gethostname() . '</p>';
echo '<p>uptime: ' . shell_exec('uptime -p') . '</p>';
echo '<p>sleep time: ' . $sleepTime . '</p>';
?>
</body>
</html>