mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
20 lines
385 B
PHP
20 lines
385 B
PHP
--TEST--
|
|
XMLWriter: libxml2 XML Writer, membuffer, flush
|
|
--EXTENSIONS--
|
|
xmlwriter
|
|
--FILE--
|
|
<?php
|
|
|
|
$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);
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0" encoding="UTF-8" standalone="standalone"?>
|
|
<tag1/>
|