XMLWriter::writeCData

(no version information, might be only in CVS)

XMLWriter::writeCData -- Write full CDATA tag

Descrição

Object oriented style:

class XMLWriter {

bool writeCData ( string content )

}

Procedural style:

bool xmlwriter_write_cdata ( resource xmlwriter, string content )

Writes a full CDATA.

Parâmetros

xmlwriter

Apenas para chamadas de procedimentos. O recurso XMLWriter resource que esta sendo modificado. Este recurso vem de uma chamada a xmlwriter_open_uri() ou xmlwriter_open_memory().

content

The contents of the CDATA.

Valores de retornado

Retorna TRUE em caso de sucesso ou FALSE em falhas.

Veja também

XMLWriter::startCData
XMLWriter::endCData