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
DOMCharacterData クラス
(PHP 5)
導入
文字データノードを表します。このクラスに直接対応するノードはなく、 他のノードがこれを継承します。
クラス概要
DOMCharacterData
extends
DOMNode
{
/* プロパティ */
/* メソッド */
/* 継承したメソッド */
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
]]]] )プロパティ
- data
-
ノードの内容。
- length
-
内容の長さ。
目次
- DOMCharacterData::appendData — ノードの文字データの最後に文字列を追加する
- DOMCharacterData::deleteData — 指定した範囲の文字列をノードから削除する
- DOMCharacterData::insertData — 指定した 16 ビット単位のオフセットに、文字列を挿入する
- DOMCharacterData::replaceData — DOMCharacterData ノードの文字列の一部を置換する
- DOMCharacterData::substringData — ノードから指定した範囲のデータを抽出する
jesdisciple dot FOO at gmail dot BAR dot com
08-Jul-2010 04:35
