當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。