In case you're looking for the CDATA class to which nodes /do/ correspond, it's called DOMCdataSection (per my PHP installation) and isn't documented on php.net. Presumably, it doesn't add anything to this API.
See also: http://www.php.net/manual/en/domdocument.createcdatasection.php
The DOMCharacterData class
(PHP 5)
Wstęp
Represents nodes with character data. No nodes directly correspond to this class, but other nodes do inherit from it.
Krótki opis klasy
DOMCharacterData
extends
DOMNode
{
/* Właściwości */
/* Metody */
/* Metody dziedziczone */
public string DOMNode::C14N
([ bool
$exclusive
[, bool $with_comments
[, array $xpath
[, array $ns_prefixes
]]]] )
public int DOMNode::C14NFile
( string
}$uri
[, bool $exclusive
[, bool $with_comments
[, array $xpath
[, array $ns_prefixes
]]]] )Właściwości
- data
-
The contents of the node.
- length
-
The length of the contents.
Spis treści
- DOMCharacterData::appendData — Append the string to the end of the character data of the node
- DOMCharacterData::deleteData — Remove a range of characters from the node
- DOMCharacterData::insertData — Insert a string at the specified 16-bit unit offset
- DOMCharacterData::replaceData — Replace a substring within the DOMCharacterData node
- DOMCharacterData::substringData — Extracts a range of data from the node
jesdisciple dot FOO at gmail dot BAR dot com
08-Jul-2010 07:35
