作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下代码来检索 HTML 文档中的所有超链接
我的问题是如何检索每个 anchor 标记内的文本节点
(即使文本节点是子节点的子节点,例如 anchor 节点具有包含文本节点的跨度节点)?
<?PHP
$content = "
<html>
<head>
<title>bar , this is an example</title>
</head>
<body>
<a href='aaa'><span>bbb</span></a>
</body>
</html>
";
$dom = new DOMDocument();
@$dom->loadHTML($content);
$xpath = new DOMXPath($dom);
$row = $xpath->evaluate("/html/body//a");
for ($i = 0; $i < $row->length; $i++) {
$anchor = $row->item($i);
$href = $anchor->getAttribute('href');
// I want the grab the text value which is inside the anchor
$text = //should have the value "bbb"
}
?>
谢谢
最佳答案
关于php - 如何在 DOM 和 PHP 中获取文本节点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1463086/
我是一名优秀的程序员,十分优秀!