DOMElement::getAttributeNodeNS()函數是PHP中的內置函數,用於獲取特定命名空間中的屬性節點,並帶有當前節點的本地名稱。
用法:
DOMAttr DOMElement::getAttributeNodeNS( string $namespaceURI, string $localName )
參數:該函數接受上述和以下描述的兩個參數:
- $namespaceURI:它指定名稱空間URI。
- $localName:它指定本地名稱。
返回值:此函數返回包含屬性節點的屬性值。
下麵給出的程序說明了PHP中的DOMElement::getAttributeNodeNS()函數:
程序1:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Load the XML
$dom->loadXML("<?xml version=\"1.0\"?>
<body xmlns:x=\"my_namespace\">
<x:div x:attr=\"value\" > DIV 1 </x:div>
</body>");
// Get the elements by tagname
$elements = $dom->getElementsByTagName('div');
// Get the attribute node
$node = $elements[0]->getAttributeNodeNS('my_namespace', '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\"?>
<root>
<body xmlns:x=\"my_namespace1\">
<x:div x:id=\"my_id1\" > DIV 1 </x:div>
<x:div x:id=\"my_id2\" > DIV 1 </x:div>
</body>
<body xmlns:xi=\"my_namespace2\">
<xi:div xi:id=\"new\" > DIV 1 </xi:div>
</body>
</root>");
// Get the elements by tagname
$elements = $dom->getElementsByTagName('div');
foreach ($elements as $element) {
$node = $element->getAttributeNodeNS('my_namespace1', 'id');
if ($node) {
// Extract name
$name = $node->name;
// Extract value
$value = $node->value;
echo $name . " => " . $value . "<br>";
}
}
?>
輸出:
id => my_id1 id => my_id2
參考: https://www.php.net/manual/en/domelement.getattributenodens.php
相關用法
- PHP DOMElement __construct()用法及代碼示例
- PHP DOMElement getAttribute()用法及代碼示例
- PHP each()用法及代碼示例
- PHP max( )用法及代碼示例
- p5.js max()用法及代碼示例
- d3.js d3.set.add()用法及代碼示例
- p5.js box()用法及代碼示例
- p5.js second()用法及代碼示例
- p5.js cos()用法及代碼示例
- PHP min( )用法及代碼示例
- d3.js d3.mean()用法及代碼示例
- d3.js d3.sum()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement getAttributeNodeNS() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。