mirror of
https://github.com/php/php-src.git
synced 2025-08-17 14:38:49 +02:00
9 lines
185 B
PHP
9 lines
185 B
PHP
<?php
|
|
$xw = new XMLWriter();
|
|
$xw->openUri('test.xml');
|
|
$xw->startDocument("1.0");
|
|
$xw->startElement("book");
|
|
$xw->text("example");
|
|
$xw->endElement();
|
|
$xw->endDocument();
|
|
$xw->flush(0);
|