mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
18 lines
332 B
PHP
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>
|