Dom\Text::splitText
PHP Manual
PHP Manual»Dom\Text»Dom\Text::splitText

Dom\Text::splitText

(PHP 8 >= 8.4.0)

Dom\Text::splitText Breaks this node into two nodes at the specified offset

Beschreibung

public function Dom\Text::splitText(int $offset): Dom\Text

Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.

Parameter-Liste

offset

The offset at which to split, starting from 0.

Rückgabewerte

The new node of the same type, which contains all the content at and after the offset.

To Top