XMLWriter::outputMemory

xmlwriter_output_memory

(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL xmlwriter >= 0.1.0)

XMLWriter::outputMemory -- xmlwriter_output_memoryReturns current buffer

Descripción

Estilo orientado a objetos

public XMLWriter::outputMemory(bool $flush = true): string

Estilo por procedimientos

xmlwriter_output_memory(XMLWriter $writer, bool $flush = true): string

Returns the current buffer.

Parámetros

xmlwriter

Sólo para llamadas por procedimientos. El resource XMLWriter que está siendo modificado. Este recurso proviene de una llamada a xmlwriter_open_uri() o xmlwriter_open_memory().

flush

Whether to flush the output buffer or not. Default is true.

Valores devueltos

Returns the current buffer as a string.

Historial de cambios

Versión Descripción
8.0.0 writer expects an XMLWriter instance now; previously, a resource was expected.

Ver también

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top