PHP:DomElement-> getAttribute

前端之家收集整理的这篇文章主要介绍了PHP:DomElement-> getAttribute前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何获取元素的所有属性?就像我下面的例子一样,我一次只能获得一个,我想拉出所有锚标签属性.
$dom = new DOMDocument();
@$dom->loadHTML(http://www.example.com);

$a = $dom->getElementsByTagName("a");
echo $a->getAttribute('href');

谢谢!

西蒙的答案“启发”.我认为你可以删除getAttribute调用,所以这里有一个没有它的解决方案:
$attrs = array();
for ($i = 0; $i < $a->attributes->length; ++$i) {
  $node = $a->attributes->item($i);
  $attrs[$node->nodeName] = $node->nodeValue;
}
var_dump($attrs);
原文链接:https://www.f2er.com/php/136055.html

猜你在找的PHP相关文章