La función DOMElement::getAttributeNS() es una función incorporada en PHP que se utiliza para obtener el valor del atributo en un espacio de nombres específico con nombre local para el Node actual.
Sintaxis:
string DOMElement::getAttributeNS( string $namespaceURI, string $localName )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $namespaceURI: Especifica la URI del espacio de nombres.
- $localName: Especifica el nombre local.
Valor de retorno: esta función devuelve un valor de string que contiene el valor del atributo, o una string vacía si no se encuentra ningún atributo con el nombre local y el URI de espacio de nombres dados.
Los siguientes ejemplos ilustran la función DOMElement::getAttributeNS() en PHP:
Ejemplo 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; ?>
Producción:
value
Ejemplo 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>'; } } ?>
Producción:
my_id1 my_id2
Referencia: https://www.php.net/manual/en/domelement.getattributens.php