Необходимо спарсить содержимое элемента <tbody></tbody> со страницы.
http://radio-tochka.com:6590/played.html
Нашел код парсера
<?php
function browser($url) {
$url="radio-tochka.com:6590/played.html";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)");
$html = curl_exec($ch);
curl_close($ch);
return $html;
}
preg_match_all('~<tbody>(.*?)</tbody>~is', browser($url), $text);
echo " Последние 10:<br /><br />";
print implode($text[1]);
?>
подстроил под эту страницу.. Почему то не работает, кто подскажет.
в чём ошибка?