XMLWriter::outputMemory

xmlwriter_output_memory

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

XMLWriter::outputMemory -- xmlwriter_output_memory返回当前缓冲区

描述

面向对象风格

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

过程式风格

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

返回当前缓冲区。

参数

writer

仅适用于过程式调用。正在修改的 XMLWriter 实例。此对象是从 xmlwriter_open_uri()xmlwriter_open_memory() 调用返回的。

flush

是否刷新输出缓冲区。默认值为 true

返回值

以字符串形式返回当前缓冲区。

变更日志

版本 描述
8.0.0 writer 现在需要一个 XMLWriter 实例;之前需要一个 resource

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top