我正在尝试使用simple-html-dom抓取此URL https://nrg91.gr/nrg-airplay-chart/,但似乎无法获取完整的html源代码。这段代码:
include_once('simple_html_dom.php');
$html = file_get_html('https://nrg91.gr/nrg-airplay-chart');
echo $html->plaintext;
直到我要搜索的内容之前,显示直到h1的内容。并且从simple-html-dom手册示例中,这应该显示该URL的所有链接:
foreach($html->find('a') as $e)
echo $e->href . '<br>';
,但它仅显示指向主导航菜单的链接,而不显示来自主体或页脚的链接。
我还尝试使用prerender.com在将URL传递到file_get_html之前完全加载url,但结果是相同的。我究竟做错了什么?
答案 0 :(得分:3)
该库看起来好像已经7年没有更新了。我总是建议使用PHP's built-in functions:
$url = "https://nrg91.gr/nrg-airplay-chart/";
$dom = new DomDocument();
libxml_use_internal_errors(true);
$dom->load($url);
foreach($dom->getElementsByTagName("a") as $e) {
echo $e->getAttribute("href") . "\n";
}
答案 1 :(得分:1)
这是我使用DOMDocument和SimpleXML来获取排名/艺术家/标题/ youtube数据的超级肮脏方法。
此概念是通过xpath //ul[@id="chart_ul"]/li
定位数据的每个“行”,然后使用dom_import_simplexml( $outer )->getNodePath()
建立新的xpath来选择可以定位所需数据的各个元素。
$temp = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'nrg-airplay-chart.html';
if( file_exists( $temp ) === false or filemtime( $temp ) < time() - 3600 )
{
file_put_contents( $temp, $html = file_get_contents('https://nrg91.gr/nrg-airplay-chart/') );
}
else
{
$html = file_get_contents( $temp );
}
$dom = new DOMDocument();
$dom->loadHTML( $html );
$xml = simplexml_import_dom( $dom );
$array = array();
foreach( $xml->xpath('//ul[@id="chart_ul"]/li') as $index => $set )
{
$basexpath = dom_import_simplexml( $set )->getNodePath();
$array[] = array(
'ranking' => (string) $xml->xpath( $basexpath . '//span[@id="ranking"]' )[0],
'artist' => (string) $xml->xpath( $basexpath . '//p[@id="artist"]/b' )[0],
'title' => (string) $xml->xpath( $basexpath . '//p[@id="title"]' )[0],
'youtube' => (string) $xml->xpath( $basexpath . '//div[@id="media"]/a/@href' )[0],
);
}
print_r( $array );
答案 2 :(得分:1)
您可能要遵循的另一种方法:
<?php
function get_content($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
$htmlContent = curl_exec($ch);
curl_close($ch);
return $htmlContent;
}
$link = "https://nrg91.gr/nrg-airplay-chart/";
$xml = get_content($link);
$dom = @DOMDocument::loadHTML($xml);
$xpath = new DOMXPath($dom);
foreach($xpath->query('//li[contains(@id,"wprs_chart-")]') as $items){
$artist = $xpath->query('.//p[@id="artist"]/b',$items)->item(0)->nodeValue;
$title = $xpath->query('.//p[@id="title"]',$items)->item(0)->nodeValue;
echo "{$artist} -- {$title}<br>";
}
?>
您应该得到的输出:
PORTOGAL THE MAN -- Feel It Still
JAX JONEW Feat INA WROLDSEN -- Breathe
CAMILA CABELLO -- Havana
CARBI B, J BALVIN & BAD BUNNY -- I Like It
ZAYN Feat SIA -- Dusk Till Dawn