答案 0 :(得分:1)
这样的事情会起作用吗?
$epgdoc = new DOMDocument();
// put the acutal path to your document here
$epgdoc->load('epg.xml');
$xpathvar = new Domxpath($epgdoc);
$queryResult = $xpathvar->query("//channel[@id='BHT 1']");
foreach($queryResult as $result){
echo $result->textContent;
}
我认为,如果你玩弄它,你就可以得到你需要的东西。