SYNOPSISxmlNode xmlTreeAddContent(xmlNode node, string content)
Parameters:
node
- the xmlNode
you want to add content tocontent
- the text content you want to add.
Returns:
node
DESCRIPTIONxmlTreeAddContent()
adds text to an xmlNode. If the
xmlNode
is an element and its last child is not a text node,
one is created. Otherwise the content is appended to the last text node.
EXAMPLE<$ret = (xmlTreeAddContent($node, '...all the way home.'))>
SEE ALSOxmlTreeSetName
,
xmlTreeSetContent