You are on page 1of 1

<?

php
$ctx = stream_context_create(array(
'http' => array(
'timeout' => 1
)
)
);

$content = @file_get_contents("http://10.68.197.184/cek.txt", 0, $ctx);


if ($content === FALSE) {
echo "Server Sedang Offline";
} else {
echo "Server Aktif";
}
?>

You might also like