Xpath php 获取链接
我使用此示例从网站获取链接:
http: //www.merchantos.com/makebeta/php/scraping-links-with-php/
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $hrefs->length; $i++) {
$href = $hrefs->item($i);
var_dump($href);
$url = $href->getAttribute('href');
echo "<br />Link stored: $url";
}
效果很好;获取所有链接;但我无法获得链接的实际“标题”;例如,如果我有:
<a href="www.google.com">Google</a>
我也希望能够获取“Google”术语。
我有点迷失,而且对 xpath 还很陌生。
I'm using this example to fetch links from a website :
http://www.merchantos.com/makebeta/php/scraping-links-with-php/
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $hrefs->length; $i++) {
$href = $hrefs->item($i);
var_dump($href);
$url = $href->getAttribute('href');
echo "<br />Link stored: $url";
}
It works well; getting all the links; but I cannot get the actual 'title' of the link; for example if i have :
<a href="www.google.com">Google</a>
I want to be able to fetch 'Google' term too.
I'm little lost and quite new to xpath.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您正在寻找“a”节点内的 Textnode 的“nodeValue”。
获得该值
您可以通过完整工作示例
:打印:
You are looking for the "nodeValue" of the Textnode inside the "a" node.
You can get that value with
Full working example:
Prints:
试试这个:
Try this: