<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.domelement.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'domelement.getelementsbytagnamens.php',
    1 => 'DOMElement::getElementsByTagNameNS',
    2 => 'Get elements by namespaceURI and localName',
  ),
  'up' => 
  array (
    0 => 'class.domelement.php',
    1 => 'DOMElement',
  ),
  'prev' => 
  array (
    0 => 'domelement.getelementsbytagname.php',
    1 => 'DOMElement::getElementsByTagName',
  ),
  'next' => 
  array (
    0 => 'domelement.hasattribute.php',
    1 => 'DOMElement::hasAttribute',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/dom/domelement/getelementsbytagnamens.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="domelement.getelementsbytagnamens" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">DOMElement::getElementsByTagNameNS</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">DOMElement::getElementsByTagNameNS</span> &mdash; <span class="dc-title">Get elements by namespaceURI and localName</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-domelement.getelementsbytagnamens-description">
  <h3 class="title">说明</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>DOMElement::getElementsByTagNameNS</strong></span>(<span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$namespace</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$localName</code></span>): <span class="type"><a href="class.domnodelist.php" class="type DOMNodeList">DOMNodeList</a></span></div>

  <p class="para rdfs-comment">
   This function fetch all the descendant elements with a given 
   <code class="parameter">localName</code> and <code class="parameter">namespace</code>.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-domelement.getelementsbytagnamens-parameters">
  <h3 class="title">参数</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">namespace</code></dt>
     <dd>
      <p class="para">
       The namespace URI of the elements to match on.
       The special value <code class="literal">&quot;*&quot;</code> matches all namespaces.
       Passing <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> matches the empty namespace.
      </p>
     </dd>
    
    
     <dt><code class="parameter">localName</code></dt>
     <dd>
      <p class="para">
       The local name of the elements to match on.
       The special value <code class="literal">&quot;*&quot;</code> matches all local names.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-domelement.getelementsbytagnamens-returnvalues">
  <h3 class="title">返回值</h3>
  <p class="para">
   This function returns a new instance of the class
   <span class="classname"><a href="class.domnodelist.php" class="classname">DOMNodeList</a></span> of all matched elements in the order in
   which they are encountered in a preorder traversal of this element tree.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-domelement.getelementsbytagnamens-changelog">
  <h3 class="title">更新日志</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>版本</th>
      <th>说明</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.3</td>
      <td>
       <code class="parameter">namespace</code> is nullable now.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-domelement.getelementsbytagnamens-seealso">
  <h3 class="title">参见</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="domelement.getelementsbytagname.php" class="methodname" rel="rdfs-seeAlso">DOMElement::getElementsByTagName()</a> - Gets elements by tagname</span></li>
   </ul>
  </p>
 </div>

</div><?php manual_footer($setup); ?>