DOMElement::getAttributeNode()函數是PHP中的一個內置函數,用於獲取當前元素的名稱為name的屬性節點。
用法:
DOMAttr DOMElement::getAttributeNode( string $name )
參數:該函數接受單個參數$name,該參數保存屬性的名稱。
返回值:此函數返回包含屬性節點的DOMAttr值。
以下示例說明了PHP中的DOMElement::getAttributeNode()函數:
範例1:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<body>
<div attr=\"value\"> DIV 1 </div>
</body>");
// Get the elements by tagname
$elements = $dom->getElementsByTagName('div');
// Get the attribute node
$node = $elements[0]->getAttributeNode('attr');
// Extract name
$name = $node->name;
// Extract value
$value = $node->value;
echo $name . " => " . $value . "<br>";
?>
輸出:
attr => 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 the elements by tagname
$elements = $dom->getElementsByTagName('div');
// Get the id of a element
echo "All the divs with id values are:<br>";
foreach ($elements as $element) {
// Get the attribute node
$node = $element->getAttributeNode('id');
// Extract name
$name = $node->name;
// Extract value
$value = $node->value;
echo $name . " => " . $value . "<br>";
}
?>
輸出:
All the divs with id values are: id => div1 id => div2 id => div3
參考: https://www.php.net/manual/en/domelement.getattributenode.php
相關用法
- PHP DOMElement getAttribute()用法及代碼示例
- PHP DOMElement getAttributeNodeNS()用法及代碼示例
- PHP DOMElement __construct()用法及代碼示例
- HTML DOM getAttributeNode()用法及代碼示例
- p5.js box()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
- p5.js value()用法及代碼示例
- p5.js sq()用法及代碼示例
- d3.js d3.rgb()用法及代碼示例
- PHP cos( )用法及代碼示例
- PHP each()用法及代碼示例
- p5.js abs()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement getAttributeNode() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。