php-src/ext/xmlwriter/tests/xmlwriter_toMemory_normal_usage.phpt

17 lines
332 B
PHP

--TEST--
XMLWriter::toMemory() - normal usage
--EXTENSIONS--
xmlwriter
--FILE--
<?php
$writer = XMLWriter::toMemory();
$writer->startElement("root");
$writer->writeAttribute("align", "left");
$writer->writeComment("hello");
$writer->endElement();
echo $writer->outputMemory();
?>
--EXPECT--
<root align="left"><!--hello--></root>