DOMElement::getAttributeNS()函數是PHP中的內置函數,用於獲取具有當前節點本地名稱的特定名稱空間中的屬性值。
用法:
string DOMElement::getAttributeNS( string $namespaceURI, string $localName )
參數:該函數接受上述和以下描述的兩個參數:
- $namespaceURI:它指定名稱空間URI。
- $localName:它指定本地名稱。
返回值:此函數返回包含屬性值的字符串值,如果找不到具有給定localName和namespaceURI的屬性,則返回空字符串。
以下示例說明了PHP中的DOMElement::getAttributeNS()函數:
範例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 value
$nodeValue = $elements[0]->getAttributeNS('my_namespace', 'attr');
echo $nodeValue;
?>
輸出:
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) {
// Get node value only from my_namespace1
$nodeValue = $element->getAttributeNS('my_namespace1', 'id');
if ($nodeValue) {
echo $nodeValue . '<br>';
}
}
?>
輸出:
my_id1 my_id2
參考: https://www.php.net/manual/en/domelement.getattributens.php
相關用法
- PHP DOMElement getElementsByTagName()用法及代碼示例
- PHP DOMElement hasAttributeNS()用法及代碼示例
- PHP DOMElement setAttributeNS()用法及代碼示例
- PHP DOMElement setAttributeNodeNS()用法及代碼示例
- PHP DOMElement getAttributeNodeNS()用法及代碼示例
- PHP DOMElement getAttribute()用法及代碼示例
- PHP DOMElement __construct()用法及代碼示例
- PHP DOMElement getAttributeNode()用法及代碼示例
- PHP DOMElement removeAttribute()用法及代碼示例
- PHP DOMElement removeAttributeNS()用法及代碼示例
- PHP DOMElement setIdAttribute()用法及代碼示例
- PHP DOMElement setIdAttributeNode()用法及代碼示例
- PHP DOMElement setIdAttributeNS()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMElement getAttributeNS() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。