没关系:我明白了,它在这里
<?php
if($element->hasAttributes())
{
$attributes = $element->attributes;
if(!is_null($attributes))
{
foreach ($attributes as $index=>$attr)
{
echo $attr->name."=\"".$attr->value."\"";
}
}
}
?>
(PHP 5, PHP 7, PHP 8)
DOMNamedNodeMap::item — 检索由索引指定的节点
index
此映射中的索引。
映射中第 index
个位置的节点,如果该索引无效(大于或等于此映射中节点的数量),则返回 null
。
没关系:我明白了,它在这里
<?php
if($element->hasAttributes())
{
$attributes = $element->attributes;
if(!is_null($attributes))
{
foreach ($attributes as $index=>$attr)
{
echo $attr->name."=\"".$attr->value."\"";
}
}
}
?>