1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 02:33:17 +02:00
Files
archived-php-src/ext/xmlwriter/tests/xmlwriter_toMemory_normal_usage.phpt
T

18 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>