PHP | DOMText __construct()函数
DOMText::__construct()函数是PHP中的一个内置函数,用于创建新的 DOMText 对象。
句法:
public DOMText::__construct( string $value )
参数:此函数接受一个包含文本的参数$value 。
下面给出的程序说明了PHP中的DOMText::__construct()函数:
方案一:
nodeValue;
?>
输出:
GeeksforGeeks
方案二:
appendChild(new DOMElement('h1'));
// Create the text Node
$text1 = new DOMText('GeeksforGeeks');
// Append the node
$element->appendChild($text1);
// Render the output
echo $document->saveXML();
?>
输出:
GeeksforGeeks
参考: https://www. PHP.net/manual/en/domtext.construct。 PHP