没关系:我找到了,它在这里
<?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."\"";
}
}
}
?>