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
相關用法
- PHP DOMText splitText()用法及代碼示例
- PHP DOMText isElementContentWhitespace()用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- d3.js d3.rgb()用法及代碼示例
- PHP cos( )用法及代碼示例
- d3.js d3.map.get()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP sin( )用法及代碼示例
- p5.js pan()用法及代碼示例
- PHP Ds\Map xor()用法及代碼示例
- CSS rgb()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMText __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。