gg
Írta: admin - Dátum: February 11 2013 12:15:41
// Change these to your online/offline messages //
$online = "Online"; // Displays when stream is online
$offline = "Offline"; // Displays when stream is offline
// don't edit below //
$ip = "s14.myradiostream.com";
$port = "3618";
$fp = @fsockopen($ip,$port,$errno,$errstr,1);
if (!$fp) {
$status = $offline;
} else {
fputs($fp, "GET /7.html HTTP/1.0\r\nUser-Agent: Mozilla\r\n\r\n");
while (!feof($fp)) {
$info = fgets($fp);
}
$split = explode(',', $info);
if ($split[1] == "0") {
$status = $offline;
} else {
$status = $online;
}
}
print $status;
?>