Playlist + uitleg
Lolbroek zegkniet
17/06/2009 20:24:00Ik heb een radio playlist{PHP Code} gevonden voor radio 538 en deze wil ik voor Skyradio....Wie kan mij helpen?
XML Bestand:
http://www.skyradio.nl/share/xml/nowplaying_skyradio.xml
Je moet de broncode in het XML bestand bekijken om CD!data te zien.
PHP code Van radio538:
Bedankt allemaal!
PS.
Ben morgen terug voor reacties
XML Bestand:
http://www.skyradio.nl/share/xml/nowplaying_skyradio.xml
Je moet de broncode in het XML bestand bekijken om CD!data te zien.
PHP code Van radio538:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$ch = curl_init();
$timeout = 2; // laden mag maximaal 2 seconden duren
curl_setopt ($ch, CURLOPT_URL, 'http://stream.radio538.nl/538play/nowplaying.xml');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
// bewerking van het bestand
$parts = explode('<artist><![CDATA[', $file_contents);
$huidig_a = explode(']]></artist>
<title><![CDATA[', $parts['1']);
$huidig_t = explode(']]><', $huidig_a['1']);
$vorig_a = explode(']]></artist>
<title><![CDATA[', $parts['2']);
$vorig_t = explode(']]></title>', $vorig_a['1']);
$huidignummer['artiest'] = $huidig_a['0'];
$huidignummer['titel'] = $huidig_t['0'];
$vorignummer['artiest'] = $vorig_a['0'];
$vorignummer['titel'] = $vorig_t['0'];
echo 'Momenteel op radio 538: '.$huidignummer['artiest'].' met '.$huidignummer['titel'].'.<br />';
echo 'Vorig nummer: '.$vorignummer['artiest'].' met '.$vorignummer['titel'].'<br />';
?>
$ch = curl_init();
$timeout = 2; // laden mag maximaal 2 seconden duren
curl_setopt ($ch, CURLOPT_URL, 'http://stream.radio538.nl/538play/nowplaying.xml');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
// bewerking van het bestand
$parts = explode('<artist><![CDATA[', $file_contents);
$huidig_a = explode(']]></artist>
<title><![CDATA[', $parts['1']);
$huidig_t = explode(']]><', $huidig_a['1']);
$vorig_a = explode(']]></artist>
<title><![CDATA[', $parts['2']);
$vorig_t = explode(']]></title>', $vorig_a['1']);
$huidignummer['artiest'] = $huidig_a['0'];
$huidignummer['titel'] = $huidig_t['0'];
$vorignummer['artiest'] = $vorig_a['0'];
$vorignummer['titel'] = $vorig_t['0'];
echo 'Momenteel op radio 538: '.$huidignummer['artiest'].' met '.$huidignummer['titel'].'.<br />';
echo 'Vorig nummer: '.$vorignummer['artiest'].' met '.$vorignummer['titel'].'<br />';
?>
Bedankt allemaal!
PS.
Ben morgen terug voor reacties
Gewijzigd op 01/01/1970 01:00:00 door Lolbroek zegkniet