xmlwriter_oo.php 185 B

123456789
  1. <?php
  2. $xw = new XMLWriter();
  3. $xw->openUri('test.xml');
  4. $xw->startDocument("1.0");
  5. $xw->startElement("book");
  6. $xw->text("example");
  7. $xw->endElement();
  8. $xw->endDocument();
  9. $xw->flush(0);