Fejl med: file_get_contents
Hejsa,Jeg prøvet at hente nogle info fra en shoutcast server side ting, og har forsøgt med dette stump kode:
<?php
function setData($land) //Set a variable has data from the Habbo Home
{
if (!$land)
{
return false;
}
else
{
$htData = file_get_contents("http://xxxxx." . $land . ":7660/"); // xxxx er bare istedet for det rigtige navn
return $htData;
}
}
function getListener($data) //Grab the Habbos motto
{
if (!$data)
{
return false;
}
else
{
$mottoStart = explode('kbps with <B>', $data);
$mottoEnd = explode(' of', $mottoStart[1]);
$mottoTrim = trim($mottoEnd[0]);
$motto = str_replace('', '', $mottoTrim);
return $motto;
}
}
$lytter = setData('dk');
echo getListener($lytter);
?>
Og jeg får denne underlige fejl:
Warning: file_get_contents(http://dawin.dk:7660/) [function.file-get-contents]: failed to open stream: HTTP request failed! ICY 200 OK in /mounted-storage/home86c/sub006/sc46641-PMQM/www/radio/test.php on line 10
- Hvad kan dette skyldes, og kan det rettes?
