当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMElement getElementsByTagNameNS()用法及代码示例


DOMElement::getElementsByTagNameNS()函数是PHP中的内置函数,用于获取具有给定localName和namespaceURI的所有后代元素。

用法:

DOMNodeList DOMElement::getElementsByTagNameNS( 
          string $namespaceURI, string $localName )

参数:该函数接受上述和以下所述的两个参数:



  • $namespaceURI:它指定名称空间URI。
  • $localName:它指定本地名称。

返回值:此函数返回一个DOMNodeList值,该值包含在此元素树的预遍历中遇到的所有匹配元素的顺序。

下面给出的程序说明了PHP中的DOMElement::getElementsByTagNameNS()函数:

程序1:

<?php 
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div xmlns:x=\"my_namespace\"> 
        <x:h1 x:style=\"color:red;\"> 
            Hello, this is my red heading. 
        </x:h1> 
        <x:h1 x:style=\"color:green;\"> 
            Hello, this is my green heading. 
        </x:h1> 
        <x:h1 x:style=\"color:blue;\"> 
            Hello, this is my blue heading. 
        </x:h1> 
    </div> 
    <div xmlns:y=\"another_namespace\"> 
        <y:h1 y:style=\"color:red;\"> 
            Hello, this is my new red heading. 
        </y:h1> 
        <y:h1 y:style=\"color:green;\"> 
            Hello, this is my new green heading. 
        </y:h1> 
        <y:h1 y:style=\"color:blue;\"> 
            Hello, this is my new blue heading. 
        </y:h1> 
    </div> 
</root>"); 
   
// Get the elements with h1 tag from 
// specific namespace 
$nodeList = $dom->getElementsByTagNameNS( 
                    'my_namespace', 'h1'); 
  
foreach ($nodeList as $node) { 
    echo $node->getAttribute('x:style') . '<br>'; 
} 
?>

输出:

color:red;
color:green;
color:blue;

程序2:

<?php 
  
// Create a new DOMDocument 
$dom = new DOMDocument(); 
   
// Load the XML 
$dom->loadXML("<?xml version=\"1.0\"?> 
<root> 
    <div xmlns:x=\"my_namespace\"> 
        <x:p>HELLO.</x:p> 
        <x:p>NEW.</x:p> 
        <x:p>WORLD.</x:p> 
    </div> 
    <div xmlns:y=\"g4g_namespace\"> 
        <y:p>GEEKS</y:p> 
        <y:p>FOR</y:p> 
        <y:p>GEEKS</y:p> 
    </div> 
</root>"); 
   
// Get the elements 
$nodeList = $dom->getElementsByTagNameNS( 
                    'g4g_namespace', 'p'); 
  
foreach ($nodeList as $node) { 
    echo $node->textContent . '<br>'; 
} 
?>

输出:

GEEKS
FOR
GEEKS

参考: https://www.php.net/manual/en/domelement.getelementsbytagnamens.php




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMElement getElementsByTagNameNS() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。