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
相关用法
- PHP DOMNode cloneNode()用法及代码示例
- PHP DOMNode appendChild()用法及代码示例
- PHP DOMNode getLineNo()用法及代码示例
- PHP Ds\Map get()用法及代码示例
- PHP pow( )用法及代码示例
- PHP abs()用法及代码示例
- PHP each()用法及代码示例
- p5.js day()用法及代码示例
- p5.js box()用法及代码示例
- PHP sin( )用法及代码示例
- p5.js arc()用法及代码示例
- p5.js value()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMNode C14N() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。