mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
18 lines
358 B
PHP
18 lines
358 B
PHP
--TEST--
|
|
XMLWriter::toStream() with encoding - test SHIFT_JIS
|
|
--EXTENSIONS--
|
|
xmlwriter
|
|
--FILE--
|
|
<?php
|
|
|
|
$h = fopen("php://output", "w");
|
|
|
|
$writer = XMLWriter::toStream($h);
|
|
$writer->startDocument(encoding: "SHIFT_JIS");
|
|
$writer->writeComment("\u{3041}\u{3041}\u{3041}");
|
|
unset($writer);
|
|
|
|
?>
|
|
--EXPECT--
|
|
<?xml version="1.0" encoding="SHIFT_JIS"?>
|
|
<!--‚Ÿ‚Ÿ‚Ÿ-->
|