DOMDocument::createCDATASection()函数是PHP中的内置函数,用于创建DOMCDATASection类的新实例。
用法:
DOMCDATASection DOMDocument::createCDATASection( string $data )
参数:该函数接受单个参数$data,该参数保存cdata的内容。
返回值:如果成功,此函数将返回新的DOMCDATASection;如果失败,则返回FALSE。
以下示例程序旨在说明PHP中的DOMDocument::createCDATASection()函数:
程序1:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createCDATASection() function to create a new cdata node
$domElement = $domDocument->createCDATASection('GeeksforGeeks');
// Append element in the document
$domDocument->appendChild($domElement);
// Save the XML file and display it
echo $domDocument->saveXML();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1"?> <![CDATA[GeeksforGeeks]]>
程序2:
<?php
// Create a new DOMDocument
$domDocument = new DOMDocument('1.0', 'iso-8859-1');
// Use createComment() function to create a new comment node
$domComment = $domDocument->createComment('Create CDATA file');
// Use createCDATASection() function to create a new cdata node
$domElement = $domDocument->createCDATASection('GeeksforGeeks');
// Append element to the document
$domDocument->appendChild($domComment);
$domDocument->appendChild($domElement);
// Save the XML file and display it
echo $domDocument->saveXML();
?>
输出:
<?xml version="1.0" encoding="iso-8859-1"?> <!--Create CDATA file--> <![CDATA[GeeksforGeeks]]>
参考: https://www.php.net/manual/en/domdocument.createcdatasection.php
相关用法
- PHP DOMDocument createElement()用法及代码示例
- PHP DOMDocument createAttribute()用法及代码示例
- PHP DOMDocument createElementNS()用法及代码示例
- PHP DOMDocument createAttributeNS()用法及代码示例
- PHP DOMDocument __construct()用法及代码示例
- PHP DOMDocument load()用法及代码示例
- PHP DOMDocument getElementsByTagName()用法及代码示例
- PHP DOMDocument createComment()用法及代码示例
- PHP DOMDocument createTextNode()用法及代码示例
- PHP DOMDocument saveHTML()用法及代码示例
- PHP DOMDocument createProcessingInstruction()用法及代码示例
- PHP DOMDocument saveXML()用法及代码示例
- PHP DOMDocument importNode()用法及代码示例
- PHP DOMDocument createEntityReference()用法及代码示例
- PHP DOMDocument save()用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 PHP | DOMDocument createCDATASection() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。