如何使用Simple HTML DOM查找特定标记?

时间:2015-12-17 17:55:03

标签: php html xml html-parsing simple-html-dom

我想解析(使用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之间的混合......
我怎么解析它?

谢谢。

0 个答案:

没有答案