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


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


DOMNode::C14N()函數是PHP中的內置函數,用於將節點轉換為字符串。

用法:

string DOMNode::C14N( bool $exclusive, 
bool $with_comments, array $xpath, array $ns_prefixes )

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


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

返回值:此函數在失敗時以字符串或FALSE返回規範化的節點。

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

範例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'); 
  
// Append the child 
$doc->documentElement->appendChild($h1); 
  
// Get the data without comments 
$stringdata = $doc->C14N(); 
echo $stringdata; 
?>

輸出:

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

範例2:

<?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); 
  
// Get the data with comments 
$stringdata = $doc->C14N(false, true); 
echo 'With Comments:<br>'; 
echo htmlentities($stringdata); 
  
// Get the data without comments 
$stringdata = $doc->C14N(false, false); 
echo '<br>Without Comments:<br>'; 
echo htmlentities($stringdata); 
?>

輸出:

With Comments:
<html><!-- This is a comment --><h1></h1></html>
Without Comments:
<html><h1></h1></html>

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



相關用法


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