📜  PHP | DOMDocument createCDATASection()函数

📅  最后修改于: 2022-05-13 01:56:27.726000             🧑  作者: Mango

PHP | DOMDocument createCDATASection()函数

DOMDocument::createCDATASection()函数是PHP中的一个内置函数,用于创建类 DOMCDATASection 的新实例。

句法:

DOMCDATASection DOMDocument::createCDATASection( string $data )

参数:此函数接受单个参数$data保存 cdata 的内容。

返回值:此函数在成功时返回新的 DOMCDATASection,在失败时返回 FALSE。

下面的程序说明了PHP中的 DOMDocument::createCDATASection()函数:

方案一:

createCDATASection('GeeksforGeeks');
  
// Append element in the document
$domDocument->appendChild($domElement);
  
// Save the XML file and display it
echo $domDocument->saveXML();
  
?>
输出:


方案二:

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();
  
?>
输出:



参考: https://www. PHP.net/manual/en/domdocument.createcdatasection。 PHP