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


PHP XMLReader readOuterXml()用法及代码示例


XMLReader::readOuterXml()函数是PHP中的内置函数,用于读取当前节点的内容,包括节点本身。

用法:

string XMLReader::readOuterXml( void )

参数:此函数不接受任何参数。



返回值:此函数在失败时以字符串或空字符串的形式返回当前节点的内容(包括自身)。

以下示例说明了PHP中的XMLReader::readOuterXml()函数:

范例1:在此程序中,我们将读取不包含sub-nodes的元素的值。

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <div> 
        <h1>Hello World</h1> 
    </div>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Open the XML file 
    $XMLReader->open('data.xml'); 
      
    // Iterate through the XML nodes to 
    // reach the h1 element 
    $XMLReader->read(); 
    $XMLReader->read(); 
    $XMLReader->read(); 
      
    // Print the XML content 
    // Here it will include itself, 
    // <h1> tags also 
    echo "The text inside is:" .  
        $XMLReader->readOuterXml(); 
    ?>
  • 输出:

范例2:在此程序中,我们将使用sub-nodes读取元素的值。

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <div> 
        <h1>Hello World  
          <sub>G4G</sub> 
        </h1> 
    </div>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Open the XML file 
    $XMLReader->open('data.xml'); 
      
    // Iterate through the XML nodes to 
    // reach the h1 element 
    $XMLReader->read(); 
    $XMLReader->read(); 
    $XMLReader->read(); 
      
    // Print the XML content 
    echo "The text inside is:" .  
        $XMLReader->readOuterXml(); 
    ?>
  • 输出:

参考: https://www.php.net/manual/en/xmlreader.readouterxml.php




相关用法


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