📜  PHP | DOMCharacterData substringData()函数

📅  最后修改于: 2022-05-13 01:56:39.860000             🧑  作者: Mango

PHP | DOMCharacterData substringData()函数

DOMCharacterData::substringData()函数是PHP中的一个内置函数,用于从节点中提取一系列数据。

句法:

string DOMCharacterData::substringData( int $offset, int $count )

参数:此函数接受上面提到的两个参数,如下所述:

  • $offset:它指定要提取的子字符串的起始位置。
  • $count:它指定要提取的字符数。

返回值:此函数返回指定的子字符串。

例外:如果$offset为负数或大于数据中 16 位单元的数量,或者$count为负数,则会引发 DOM_INDEX_SIZE_ERR。

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

程序1(使用PHP echo函数查看子串):

appendChild(new DOMElement('div'));
  
// Create a DOMCdataSection 
$text = $element->appendChild(
        new DOMCdataSection('GeeksForGeeks'));
  
// Get the substring
$text = $text->substringData(0, 13);
  
echo $text;
?>

输出:

GeeksForGeeks

程序 2(创建 HTML 标题以查看子字符串):

appendChild(new DOMElement('div'));
  
// Create a DOMCdataSection 
$text = $element->appendChild(
        new DOMCdataSection('GeeksForGeeks'));
  
// Get the substring
$text = $text->substringData(0, 13);
  
// Create a new element
$elementnew = $dom->createElement('h1', $text);
  
// We insert the new element
$dom->appendChild($elementnew);
  
echo $dom->saveXML();
?>

输出:

参考: https://www. PHP.net/manual/en/domcharacterdata.substringdata。 PHP