SYNOPSISint xmlWriterWriteCDATA(xmlWriter writer, string content)
Parameters:
writer
- the xmlWriter
content
- the content of the CDATA section
Returns:
DESCRIPTIONxmlWriterWriteCDATA()
writes out a complete CDATA section. It is
the same as calling
xmlWriterStartCDATA($writer)
xmlWriterWrite($writer, $content)
xmlWriterEndCDATA($writer)
EXAMPLE<$ret = (xmlWriterWriteCDATA($writer,
'No parsing me! &&& is ok!'))>
SEE ALSOxmlWriterStartCDATA
,
xmlWriterWrite
,
xmlWriterEndCDATA