📜  PHP | DOMEntityReference __construct()函数

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

PHP | DOMEntityReference __construct()函数

DOMEntityReference::__construct()函数是PHP中的一个内置函数,用于创建新的 DOMEntityReference 对象。

句法:

public DOMEntityReference::__construct( string $name )

参数:此函数接受单个参数$name ,其中包含实体引用的名称。

下面给出的程序说明了PHP中的DOMEntityReference::__construct()函数

方案一:

appendChild(new DOMElement('H1'));
    
// Add the DOM Entity Reference as a child
$entity = $element->appendChild(new DOMEntityReference('GeeksforGeeks'));
  
// Render the XML
echo $dom->saveXML();
?>

输出:

方案二:

appendChild(new DOMElement('body'));
    
// Add the DOM Entity Reference as a child
$entity = $element->appendChild(new DOMEntityReference('GeeksforGeeks'));
  
// View the name of node
echo $entity->nodeName;
?>

输出:

GeeksforGeeks

参考: https://www. PHP.net/manual/en/domentityreference.construct。 PHP