DOMDocument::createCDATASection

(PHP 5, PHP 7, PHP 8)

DOMDocument::createCDATASectionCreate new cdata node

Description

publicDOMDocument::createCDATASection(string$data): DOMCdataSection|false

This function creates a new instance of class DOMCDATASection. This node will not show up in the document unless it is inserted with (e.g.) DOMNode::appendChild().

Parameters

data

The content of the cdata.

Return Values

The new DOMCDATASection or false if an error occurred.

See Also

To Top