php-src/ext/xmlwriter/tests/OO_002.phpt

23 lines
464 B
Plaintext
Raw Normal View History

2005-06-23 11:29:03 +00:00
--TEST--
XMLWriter: libxml2 XML Writer, membuffer, flush
--SKIPIF--
<?php if (!extension_loaded("xmlwriter")) print "skip"; ?>
--FILE--
<?php
/* $Id$ */
$xw = new XMLWriter();
$xw->openMemory();
2005-08-06 18:23:40 +00:00
$xw->startDocument('1.0', 'UTF-8', 'standalone');
2005-06-23 11:29:03 +00:00
$xw->startElement("tag1");
$xw->endDocument();
// Force to write and empty the buffer
echo $xw->flush(true);
?>
2005-07-03 09:10:41 +00:00
===DONE===
2005-06-23 11:29:03 +00:00
--EXPECT--
2005-08-06 18:23:40 +00:00
<?xml version="1.0" encoding="UTF-8" standalone="standalone"?>
2005-06-23 11:29:03 +00:00
<tag1/>
2005-07-03 09:10:41 +00:00
===DONE===