DOMEntityReference::__construct()函数是PHP中的内置函数,用于创建新的DOMEntityReference对象。
用法:
public DOMEntityReference::__construct( string $name )
参数:该函数接受单个参数$name,该参数保存实体引用的名称。
下面给出的程序说明了PHP中的DOMEntityReference::__construct()函数:
程序1:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Add the node to the dom
$element = $dom->appendChild(new DOMElement('H1'));
// Add the DOM Entity Reference as a child
$entity = $element->appendChild(new DOMEntityReference('GeeksforGeeks'));
// Render the XML
echo $dom->saveXML();
?>
输出:
程序2:
<?php
// Create a new DOMDocument
$dom = new DOMDocument();
// Add the node to the dom
$element = $dom->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
相关用法
- PHP abs()用法及代码示例
- p5.js arc()用法及代码示例
- PHP tan( )用法及代码示例
- PHP cos( )用法及代码示例
- d3.js d3.rgb()用法及代码示例
- PHP end()用法及代码示例
- d3.js d3.lab()用法及代码示例
- d3.js d3.hcl()用法及代码示例
- PHP sin( )用法及代码示例
- PHP Ds\Set xor()用法及代码示例
- CSS rgb()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMEntityReference __construct() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。