PHP | DOMCdataSection __construct()函数
DOMCdataSection::__construct()函数是PHP中的一个内置函数,用于构造一个新的 DOMCdataSection 对象。 DOMC 代表 DOM 字符 ,这部分可以使用 DOMCharacterData 类的方法进一步操作。此 CDATA 节点的工作方式类似于 DOMTEXT 类。
句法:
public DOMCdataSection::__construct( string $value )
参数:此函数接受单个参数$value ,该参数保存 CDATA 节点的值。
下面给出的程序说明了PHP中的DOMCdataSection::__construct()函数:
方案一:
appendChild(new DOMElement('div'));
// Create a DOMCdataSection
$text = $element->appendChild(
new DOMCdataSection('Hey this is my DOMC'));
echo $dom->saveXML();
?>
输出:使用 Chrome 开发者工具查看 HTML 或按 Ctrl+U
方案二:
appendChild(new DOMElement('div'));
// Create a DOMCdataSection
$text = $element->appendChild(
new DOMCdataSection('GeeksforGeeks'));
// Split the first 5 words
$text->splitText(5);
echo $dom->saveXML();
?>
输出:
参考: https://www. PHP.net/manual/en/domcdatasection.construct。 PHP