php8.5
Home/ Manual/ dom / domcharacterdata/ DOMCharacterData::insertData

DOMCharacterData::insertData

PHP function Edit on GitHub ✎

(PHP 5, PHP 7, PHP 8)

Insert a string at the specified UTF-8 codepoint offset

Description

DOMCharacterData::insertData(int $offset, string $data): bool

Inserts string data at position offset.

Parameters

offset

The character offset at which to insert.

data

The string to insert.

Return Values

Success

Errors/Exceptions

May throw a DOMException with the following error codes:

DOM_INDEX_SIZE_ERR

Raised if offset is negative or greater than the number of UTF-8 codepoints in data.

See Also

  • DOMCharacterData::appendData
  • DOMCharacterData::deleteData
  • DOMCharacterData::replaceData
  • DOMCharacterData::substringData

Source: reference/dom/domcharacterdata/insertdata.xml · from the official PHP manual (php/doc-en)