我想解析(使用Simple HTML DOM)此网址的源代码:http://www.jeuxdemots.org/rezo-xml.php?gotermsubmit=Chercher&gotermrel=lampe&output=onlyxml
特别是,我想找到所有“rel”标签并打印出他们的“类型”,我试过这个:
$html = file_get_html('http://www.jeuxdemots.org/rezo-xml.php?gotermsubmit=Chercher&gotermrel=chien&output=onlyxml');
foreach($html->find('rel') as $e)
echo $e->type . '<br>';
但它不起作用,它显示一个空白页面。
你能告诉我为什么吗?
是因为DOM无法识别标签“rel”吗?
此外,URL的源代码对我来说似乎很奇怪,它是HTML和XML之间的混合......
我怎么解析它?
谢谢。