mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
17 lines
332 B
PHP
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>
|