DOMDocument->createTextNode()

(no version information, might be only in CVS)

DOMDocument->createTextNode() -- Create new text node

Описание

class DOMDocument {

DOMText createTextNode ( string content )

}

This function creates a new instance of class DOMText. Этот узел не будет отображаться в документе до тех пор, пока он не будет вставлен, к пример функцией DOMNode->appendChild().

Список параметров

content

The content of the text.

Возвращаемые значения

The new DOMText or FALSE if an error occured.



DOMDocument->createTextNode()
jon at websandbox dot net
03-Aug-2005 04:01
About escaping characters:
This is standard behavior.  brackets, ampersans, and maybe even quoted will be "escaped" if you output your XML as a string. 

This should not, however, happen if you append your text node to a CDATA section.

<DOMDocument->createProcessingInstruction()DOMDocument->getElementById()>
 Last updated: Mon, 14 Nov 2005