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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。