当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP DOMText __construct()用法及代码示例


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

用法:

public DOMText::__construct( string $value )

参数:该函数接受单个参数$value来保存文本。



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

程序1:

<?php 
  
// Create the text Node 
$text = new DOMText('GeeksforGeeks'); 
  
// Get the Value 
echo $text->nodeValue; 
?>

输出:

GeeksforGeeks

程序2:

<?php 
// Create a new DOMDocument instance 
$document = new DOMDocument(); 
  
// Create a h1 element 
$element = $document->appendChild(new DOMElement('h1')); 
  
// Create the text Node 
$text1 = new DOMText('GeeksforGeeks'); 
  
// Append the node 
$element->appendChild($text1); 
  
// Render the output 
echo $document->saveXML(); 
?>

输出:

<?xml version="1.0"?>
<h1>GeeksforGeeks</h1>

参考: https://www.php.net/manual/en/domtext.construct.php




相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | DOMText __construct() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。