当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMElement getAttribute()用法及代码示例


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

用法:

string DOMElement::getAttribute( string $name )

参数:该函数接受单个参数$name,该参数保存属性的名称。


返回值:此函数返回包含属性值的字符串值。

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

程序1:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<body> 
    <strong attr=\"value\"> 22 </strong> 
</body>"); 
  
// Get the strong element 
$element = $dom->getElementsByTagName('strong'); 
  
// Get the attribute 
$value = $element[0]->getAttribute('attr'); 
echo $value; 
?>

输出:

value

程序2:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
  
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<body> 
    <div id=\"div1\"> DIV 1 </div> 
    <div id=\"div2\"> DIV 2 </div> 
    <div id=\"div3\"> DIV 3 </div> 
</body>"); 
  
// Get all the div elements 
$elements = $dom->getElementsByTagName('div'); 
  
// Get the id value of each element 
echo "All the id values of divs are:<br>"; 
foreach ($elements as $element) { 
    echo $element->getAttribute('id') . "<br>"; 
} 
?>

输出:

All the id values of divs are:
div1
div2
div3

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



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMElement getAttribute() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。