DOMCharacterData::appendData

(PHP 5, PHP 7, PHP 8)

DOMCharacterData::appendData Append the string to the end of the character data of the node

Description

publicDOMCharacterData::appendData(string$data): true

Append the string data to the end of the character data of the node.

Parameters

data

The string to append.

Return Values

Always returns true.

Changelog

VersionDescription
8.3.0 This function now has a tentative true return type.

See Also

To Top