XMLWriter::outputMemory

xmlwriter_output_memory

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

XMLWriter::outputMemory -- xmlwriter_output_memoryRetourne le buffer courant

Description

Style orienté objet

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

Style procédural

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

Retourne le buffer courant.

Liste de paramètres

writer

Uniquement pour les appels procéduraux. L'instance XMLWriter qui est modifiée. Cet objet provient d'un appel à xmlwriter_open_uri() ou xmlwriter_open_memory().

flush

Si l'on doit afficher le buffer ou non. Par défaut, ce paramètre vaut true.

Valeurs de retour

Retourne le buffer courant sous la forme d'une chaîne de caractères.

Historique

Version Description
8.0.0 writer attend une instance de XMLWriter désormais; auparavant, une resource était attendu.

Voir aussi

add a note add a note

User Contributed Notes

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