SYNOPSISint xmlWriterWriteComment(xmlWriter writer, string content)
Parameters:
writer
- the xmlWriter
content
- the content of the CDATA section
Returns:
xmlWriterWriteComment()
writes out a complete comment. It is the
same as calling
xmlWriterStartComment($writer)
xmlWriterWrite($writer, $content)
xmlWriterEndComment($writer)
EXAMPLE<$ret = (xmlWriterWriteComment($writer, 'This is important'))>