當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP DOMCdataSection __construct()用法及代碼示例


DOMCdataSection::__construct()函數是PHP中的內置函數,用於構造新的DOMCdataSection對象。 DOMC代表DOM Character,可以使用DOMCharacterData類的方法來進一步操縱此部分。此CDATA節點的工作方式類似於DOMTEXT類。

用法:

public DOMCdataSection::__construct( string $value )

參數:該函數接受單個參數$value,該參數保存CDATA節點的值。


下麵給出的程序說明了PHP中的DOMCdataSection::__construct()函數:

程序1:

<?php 
  
// Create a new DOM Document 
$dom = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create a div element 
$element = $dom->appendChild(new DOMElement('div')); 
  
// Create a DOMCdataSection  
$text = $element->appendChild( 
    new DOMCdataSection('Hey this is my DOMC')); 
  
echo $dom->saveXML(); 
?>

輸出:使用Chrome開發者工具查看HTML或按Ctrl + U

程序2:

<?php 
  
// Create a new DOM Document 
$dom = new DOMDocument('1.0', 'iso-8859-1'); 
  
// Create a div element 
$element = $dom->appendChild(new DOMElement('div')); 
  
// Create a DOMCdataSection  
$text = $element->appendChild( 
    new DOMCdataSection('GeeksforGeeks')); 
  
// Split the first 5 words 
$text->splitText(5); 
  
echo $dom->saveXML(); 
?>

輸出:

參考: https://www.php.net/manual/en/domcdatasection.construct.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | DOMCdataSection __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。