XMLWriter::flush
xmlwriter_flush
(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL xmlwriter >= 1.0.0)
XMLWriter::flush -- xmlwriter_flush — 現在のバッファをフラッシュする
説明
オブジェクト指向型
手続き型
現在のバッファをフラッシュします。
パラメータ
-
writer
-
手続き型のコールでのみ使用します。 変更される XMLWriter のインスタンスです。 このインスタンスは、xmlwriter_open_uri() あるいは xmlwriter_open_memory() を呼び出すことで取得したものです。
empty
-
バッファを空にするかどうか。デフォルトは
true
です。
戻り値
ライターをメモリにオープンした場合は、この関数は出来上がった XML バッファを返します。 そうではなく URI を使用している場合は、この関数はバッファを書き込み、 書き込んだバイト数を返します。
+add a note
User Contributed Notes 1 note
Sbastien ¶
2 years ago
XMLWriter::flush() basic usage with XMLWriter::openMemory() :
<?php
$xml = new XMLWriter();
$xml->openMemory();
$xml->startDocument();
$xml->writeElement('message', 'Hello World!');
$xml->endDocument();
echo $xml->flush();
/*
Produces :
<?xml version="1.0"?>
<message>Hello World!</message>
*/
?>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google