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


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


XMLReader::expand()函数是PHP中的内置函数,用于复制当前节点并返回适当的DOM对象。

用法:

DOMNode XMLReader::expand( DOMNode $basenode )

参数:该函数接受单个参数$basenode,该参数包含一个DOMNode,该DOMNode定义了所创建DOM对象的目标DOMDocument。



返回值:如果成功,则此函数返回DOMNode;如果失败,则返回FALSE。

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

范例1:

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <root> 
        <div> This is a div </div> 
    </root>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Open the XML file 
    $XMLReader->open('data.xml'); 
      
    // Move to the first node 
    $XMLReader->read(); 
      
    // Read it as a element 
    $element = $XMLReader->expand(); 
      
    // Print the node value to the browser 
    echo $element->nodeValue; 
    ?>
  • 输出:
    This is a div

范例2:

  • data.xml
    <?xml version="1.0" encoding="utf-8"?> 
    <body> 
        <h1 style="color:green; font-size:100px;">  
          GeeksforGeeks  
        </h1> 
    </body>
  • index.php
    <?php 
      
    // Create a new XMLReader instance 
    $XMLReader = new XMLReader(); 
      
    // Open the XML file 
    $XMLReader->open('data.xml'); 
      
    // Move to the first node 
    $XMLReader->read(); 
      
    // Read it as a element 
    $element = $XMLReader->expand(); 
      
    // Create a new DOMDocument instance 
    $DOMDocument = new DOMDocument(); 
      
    // Append the child to the element 
    $DOMDocument->appendChild($element); 
      
    // Render the XML in browser 
    echo $DOMDocument->saveXML();
  • 输出:

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




相关用法


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