XMLWriter::outputMemory

xmlwriter_output_memory

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

XMLWriter::outputMemory -- xmlwriter_output_memoryGibt Puffer zurück

Beschreibung

Objektorientierter Stil

XMLWriter::outputMemory ([ bool $flush = TRUE ] ) : string

Prozeduraler Stil

xmlwriter_output_memory ( resource $xmlwriter [, bool $flush = TRUE ] ) : string

Gibt den aktuellen Puffer-Inhalt zurück.

Parameter-Liste

xmlwriter

Nur für prozedurale Aufrufe. Die XMLWriter-resource, die bearbeitet werden soll. Diese Ressource wird von Aufrufen von xmlwriter_open_uri() oder xmlwriter_open_memory() geliefert.

flush

Ob der Puffer geleert werden soll oder nicht. Standard ist TRUE.

Rückgabewerte

Gibt den aktuellen Puffer-Inhalt als Zeichenkette zurück.

Siehe auch

add a note add a note

User Contributed Notes 1 note

up
1
dave at dtracorp dot com
17 years ago
when writing xml with xmlwriter, there is no need to use htmlspecialchars or htmlentities for the text() method (this will only cause double encoding)
the xmlwriter takes care of entities for you after calling outputMemory
To Top