The Dom\CharacterData class

Introduction

Represents nodes with character data. No nodes directly correspond to this class, but other nodes do inherit from it.

This is the modern, spec-compliant equivalent of DOMCharacterData.

Class synopsis

Dom\CharacterData
extends Dom\Node
implements Dom\ChildNode
/* Inherited constants */
public const int Dom\Node::DOCUMENT_POSITION_DISCONNECTED = 0x1;
public const int Dom\Node::DOCUMENT_POSITION_PRECEDING = 0x2;
public const int Dom\Node::DOCUMENT_POSITION_FOLLOWING = 0x4;
public const int Dom\Node::DOCUMENT_POSITION_CONTAINS = 0x8;
public const int Dom\Node::DOCUMENT_POSITION_CONTAINED_BY = 0x10;
public const int Dom\Node::DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
/* Properties */
public readonly Dom\Elementnull $previousElementSibling;
public readonly Dom\Elementnull $nextElementSibling;
public string $data;
public readonly int $length;
/* Inherited properties */
public readonly int $nodeType;
public readonly string $nodeName;
public readonly string $baseURI;
public readonly bool $isConnected;
public readonly Dom\Documentnull $ownerDocument;
public readonly Dom\Nodenull $parentNode;
public readonly Dom\Elementnull $parentElement;
public readonly Dom\NodeList $childNodes;
public readonly Dom\Nodenull $firstChild;
public readonly Dom\Nodenull $lastChild;
public readonly Dom\Nodenull $previousSibling;
public readonly Dom\Nodenull $nextSibling;
public stringnull $nodeValue;
public stringnull $textContent;
/* Methods */
public void Dom\CharacterData::after(Dom\Nodestring ...$nodes)
public void Dom\CharacterData::appendData(string $data)
public void Dom\CharacterData::before(Dom\Nodestring ...$nodes)
public void Dom\CharacterData::deleteData(int $offset, int $count)
public void Dom\CharacterData::insertData(int $offset, string $data)
public void Dom\CharacterData::remove()
public void Dom\CharacterData::replaceData(int $offset, int $count, string $data)
public void Dom\CharacterData::replaceWith(Dom\Nodestring ...$nodes)
public string Dom\CharacterData::substringData(int $offset, int $count)
/* Inherited methods */
/* Not documented yet */

Properties

previousElementSibling

The previous sibling element or null.

nextElementSibling

The next sibling element or null.

data

The contents of the node.

length

The length of the contents.

Table of Contents