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


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


DOMNode::C14NFile()函數是PHP中的內置函數,用於將節點規範化為文件。

用法:

int DOMNode::C14NFile( string $uri, bool $exclusive, 
bool $with_comments, array $xpath, array $ns_prefixes )

參數:該函數接受上述和以下所述的五個參數:


  • $uri (Optional):它指定將輸出寫入的路徑。
  • $exclusive (Optional):它指定是僅對與提供的xpath或名稱空間前綴匹配的節點啟用獨占解析。
  • $with_comments(可選):它指定是否在輸出中保留注釋。
  • $xpath (Optional):它指定一個xpath數組來過濾節點。
  • $ns_prefixes(可選):它指定一個名稱空間前綴數組來過濾節點。

返回值:該函數返回失敗時寫入的字節數或FALSE

以下示例說明了PHP中的DOMNode::C14NFile()函數:

範例1:在此示例中,我們將以字符串形式將DOM內容保存到沒有注釋的文件中

<?php 
  
// Create a DOMDocument 
$doc = new DOMDocument(); 
   
// Load XML 
$doc->loadXML('<html></html>'); 
   
// Create an heading element on DOMDocument object 
$h1 = $doc->createElement('h1'); 
   
// Append the child 
$doc->documentElement->appendChild($h1); 
   
// Save the data without comments 
$stringdata = $doc->C14NFile('new.txt'); 
?>

輸出:這將創建一個具有以下文本內容的new.txt文件

<html><h1></h1></html>

範例2:在此示例中,我們將以字符串形式將DOM內容保存到帶有注釋的文件中。

<?php 
  
// Create a DOMDocument 
$doc = new DOMDocument(); 
  
// Load XML 
$doc->loadXML('<html><!-- This is a comment --></html>'); 
  
// Create an heading element on DOMDocument object 
$h1 = $doc->createElement('h1'); 
  
// Append the child 
$doc->documentElement->appendChild($h1); 
  
// Save the data with comments 
$stringdata = $doc->C14NFile('new.txt', false, true); 
?>

輸出:這將創建一個具有以下文本內容的new.txt文件

<html><!-- This is a comment --><h1></h1></html>

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



相關用法


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