📜  PHP | DOMElement getAttribute()函数

📅  最后修改于: 2022-05-13 01:56:46.244000             🧑  作者: Mango

PHP | DOMElement getAttribute()函数

DOMElement::getAttribute()函数是PHP中的一个内置函数,用于获取具有当前节点名称的属性的值。

句法:

string DOMElement::getAttribute( string $name )

参数:此函数接受一个参数$name ,它包含属性的名称。

返回值:该函数返回一个包含属性值的字符串值。

下面给出的程序说明了PHP中的DOMElement::getAttribute()函数

方案一:

loadXML("

     22 
");
  
// Get the strong element
$element = $dom->getElementsByTagName('strong');
  
// Get the attribute
$value = $element[0]->getAttribute('attr');
echo $value;
?>

输出:

value

方案二:

loadXML("

    
DIV 1
    
DIV 2
    
DIV 3
");    // Get all the div elements $elements = $dom->getElementsByTagName('div');    // Get the id value of each element echo "All the id values of divs are:
"; foreach ($elements as $element) {     echo $element->getAttribute('id') . "
"; } ?>

输出:

All the id values of divs are:
div1
div2
div3

参考: https://www. PHP.net/manual/en/domelement.getattribute。 PHP