1--TEST--
2XMLWriter::toMemory() - normal usage
3--EXTENSIONS--
4xmlwriter
5--FILE--
6<?php
7
8$writer = XMLWriter::toMemory();
9$writer->startElement("root");
10$writer->writeAttribute("align", "left");
11$writer->writeComment("hello");
12$writer->endElement();
13echo $writer->outputMemory();
14
15?>
16--EXPECT--
17<root align="left"><!--hello--></root>
18