mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
18 lines
328 B
PHP
18 lines
328 B
PHP
--TEST--
|
|
XMLWriter::toStream() with encoding - test UTF-8
|
|
--EXTENSIONS--
|
|
xmlwriter
|
|
--FILE--
|
|
<?php
|
|
|
|
$h = fopen("php://output", "w");
|
|
|
|
$writer = XMLWriter::toStream($h);
|
|
$writer->startDocument(encoding: "UTF-8");
|
|
$writer->writeComment('ééé');
|
|
unset($writer);
|
|
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--ééé-->
|