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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。