當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DOMNode cloneNode()用法及代碼示例


DOMNode::cloneNode()函數是PHP中的內置函數,用於創建節點的副本。

用法:

DOMNode DOMNode::cloneNode( bool $deep )

參數:該函數接受單個參數$deep,該參數指示是否複製所有後代節點。默認情況下,此參數設置為FALSE。


返回值:此函數返回克隆的節點。

程序1:

<?php 
// Create a DOMDocument 
$doc = new DOMDocument(); 
  
// Load XML 
$doc->loadXML('<html></html>'); 
  
// Create an heading element on DOMDocument object 
$h1 = $doc->createElement('h1', "geeksforgeeks"); 
  
// Append the child 
$doc->documentElement->appendChild($h1); 
  
// Create a new DOMDocument 
$doc_new = new DOMDocument(); 
  
// Deep clone the node to new instance 
$doc_new = $doc->cloneNode(true); 
  
// Render the cloned instance 
echo $doc_new->saveXML(); 
?>

輸出:

程序2:

<?php 
// Create a DOMDocument 
$doc = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Load XML 
$doc->loadXML('<html></html>'); 
  
// Create an heading element on DOMDocument object 
$h1 = $doc->createElement('h1', "geeksforgeeks"); 
  
// Append the child 
$doc->documentElement->appendChild($h1); 
  
// Shallow clone the node to a new instance 
// It will clone only the instance not its 
// children nodes 
$doc_new = $doc->cloneNode(false); 
  
// Render the cloned instance 
echo $doc_new->saveXML(); 
?>

輸出:按Ctrl + U查看DOM

參考: https://www.php.net/manual/en/domnode.clonenode.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMNode cloneNode() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。