diff options
Diffstat (limited to 'ext/xmlwriter/tests/OO_002.phpt')
-rw-r--r-- | ext/xmlwriter/tests/OO_002.phpt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ext/xmlwriter/tests/OO_002.phpt b/ext/xmlwriter/tests/OO_002.phpt new file mode 100644 index 0000000..ec605f5 --- /dev/null +++ b/ext/xmlwriter/tests/OO_002.phpt @@ -0,0 +1,22 @@ +--TEST-- +XMLWriter: libxml2 XML Writer, membuffer, flush +--SKIPIF-- +<?php if (!extension_loaded("xmlwriter")) print "skip"; ?> +--FILE-- +<?php +/* $Id$ */ + +$xw = new XMLWriter(); +$xw->openMemory(); +$xw->startDocument('1.0', 'UTF-8', 'standalone'); +$xw->startElement("tag1"); +$xw->endDocument(); + +// Force to write and empty the buffer +echo $xw->flush(true); +?> +===DONE=== +--EXPECT-- +<?xml version="1.0" encoding="UTF-8" standalone="standalone"?> +<tag1/> +===DONE=== |