OO_002.phpt 385 B

12345678910111213141516171819
  1. --TEST--
  2. XMLWriter: libxml2 XML Writer, membuffer, flush
  3. --EXTENSIONS--
  4. xmlwriter
  5. --FILE--
  6. <?php
  7. $xw = new XMLWriter();
  8. $xw->openMemory();
  9. $xw->startDocument('1.0', 'UTF-8', 'standalone');
  10. $xw->startElement("tag1");
  11. $xw->endDocument();
  12. // Force to write and empty the buffer
  13. echo $xw->flush(true);
  14. ?>
  15. --EXPECT--
  16. <?xml version="1.0" encoding="UTF-8" standalone="standalone"?>
  17. <tag1/>