Code: Select all
<?php
//lista kanałów online
echo '<h4>Lista kanałów online:</h4>';
$c = curl_init();
curl_setopt($c, CURLOPT_URL, 'http://weeb.tv/channels');
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
$page = curl_exec($c);
curl_close($c);
preg_match_all('/<fieldset onclick="location.href=(.*?)" class="online">/is', $page, $fieldSets);
$s = count($fieldSets[1]);
for($x=1;$x<$s;$x++) {
echo $fieldSets[1][$x].'<br>';
}
?>
Po wywołaniu pliku na serwerze mamy listę dostępnych kanałów bez logowania:
Code: Select all
Lista kanałów online:
'http://weeb.tv/channel/tvp22'
'http://weeb.tv/channel/tvp-info'
'http://weeb.tv/channel/tlc'
'http://weeb.tv/channel/top_gear'
'http://weeb.tv/channel/puls'
'http://weeb.tv/channel/baby_tv'
'http://weeb.tv/channel/tvp1hd11'
'http://weeb.tv/channel/worlddiscovery'
'http://weeb.tv/channel/housemd'
'http://weeb.tv/channel/disneyjunior'
'http://weeb.tv/channel/spongebobkanciastoporty'
'http://weeb.tv/channel/history'
'http://weeb.tv/channel/id'
'http://weeb.tv/channel/bajkihd'
'http://weeb.tv/channel/levelone'
'http://weeb.tv/channel/stargate'
'http://weeb.tv/channel/discoveryworld'
'http://weeb.tv/channel/tvszesc'
'http://weeb.tv/channel/discoveryscenice'
'http://weeb.tv/channel/13posterunek'
'http://weeb.tv/channel/bbcknowledge'
'http://weeb.tv/channel/disneychannel'
'http://weeb.tv/channel/natgeowild'
'http://weeb.tv/channel/serial_3'
'http://weeb.tv/channel/detektywmonk'
'http://weeb.tv/channel/men5'
'http://weeb.tv/channel/tvphd'
'http://weeb.tv/channel/swiatwedlugbundych'
'http://weeb.tv/channel/cn'
'http://weeb.tv/channel/archiwumx'
'http://weeb.tv/channel/mordoklejastv'
'http://weeb.tv/channel/mentalist'
'http://weeb.tv/channel/axn'
'http://weeb.tv/channel/animalplanet'
'http://weeb.tv/channel/bbclifestyle'
'http://weeb.tv/channel/tvpsport1'
'http://weeb.tv/channel/cbeebies'
'http://weeb.tv/channel/tvp-polonia'
'http://weeb.tv/channel/flinstonowie'
'http://weeb.tv/channel/national'
'http://weeb.tv/channel/discoveryhistoria'
'http://weeb.tv/channel/disneyxd'
'http://weeb.tv/channel/men4'
'http://weeb.tv/channel/bbcentertainment'
'http://weeb.tv/channel/tefaupehistoria'
'http://weeb.tv/channel/supernatural_pl'
'http://weeb.tv/channel/boomerang'
'http://weeb.tv/channel/dokumenty'
'http://weeb.tv/channel/axncrime'
'http://weeb.tv/channel/polsatnews'
'http://weeb.tv/channel/puls2'
'http://weeb.tv/channel/bylosobie'
'http://weeb.tv/channel/scifi'
'http://weeb.tv/channel/kaszpik'
'http://weeb.tv/channel/bbc'
'http://weeb.tv/channel/doktorwho'
'http://weeb.tv/channel/kaszpiktv'
'http://weeb.tv/channel/sanktuariumnb'
'http://weeb.tv/channel/transmisja'
Możliwe że później rozbuduje skrypt o logowanie.