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


PHP DOMText splitText()用法及代碼示例


DOMText::splitText()函數是PHP中的內置函數,用於將一個節點分成指定偏移量的兩個節點。

用法:

DOMText DOMText::splitText( int $offset )

參數:此函數接受單個參數$offset,該參數包含要拆分的偏移量。



返回值:此函數返回一個相同類型的新節點,其中包含偏移量及之後的所有內容。

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

程序1:

<?php 
  
// Create the text Node 
$text = new DOMText('GeeksforGeeks'); 
  
// Split the text 
$splitedtext = $text->splitText(8); 
echo $splitedtext->nodeValue; 
?>

輸出:

Geeks

程序2:

<?php 
  
// Create a new DOMDocument instance 
$document = new DOMDocument(); 
   
// Create a div element 
$element = $document->appendChild(new DOMElement('div')); 
   
// Create a text Node 
$text = $document->createTextNode('GeeksforGeeks'); 
   
// Append the nodes 
$element->appendChild($text); 
   
echo "Number of text nodes before splitting:"; 
echo count($element->childNodes) . "<br>"; 
   
// Splitting the text 
$text->splitText(5); 
   
echo "Number of text nodes after splitting:"; 
echo count($element->childNodes); 
?>

輸出:

Number of text nodes before splitting:1
Number of text nodes after splitting:1

參考: https://www.php.net/manual/en/domtext.splittext.php




相關用法


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