所以我尝试使用 XPath 在 PHP 文件中获取“当前歌曲”作为回声。我试图回显 file_get_content 并返回我试图从中获取内容的网页,但似乎我无法使用 XPath 过滤网页内容。它应该只回显当前歌曲。这是我试过的:<?phplibxml_use_internal_errors(false);$html = file_get_contents('http://185.40.20.83/radio/8000/');$doc = new DOMDocument;$doc->loadHTML($html);$xpath = new DOMXpath($doc);$node = $xpath->query('/html/body/div/div[1]/div[2]/table/tbody/tr[10]/td[2]')->item(0);echo $node->textContent;?>我试了一个多小时,我失去了希望,因为我看不出问题是什么......
1 回答
芜湖不芜
TA贡献1796条经验 获得超7个赞
尝试将您更改$node
为:
$node = $xpath->query('//table//tr[./td[text()="Current Song:"]]/td[2]')->item(0);
要么
$node = $xpath->query('//table//tr[./td[text()="Current Song:"]]/td[2]'); echo $node[0]->nodeValue;
输出:
Chmst - Pump Up The Jam
- 1 回答
- 0 关注
- 67 浏览
添加回答
举报
0/150
提交
取消