mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
19 lines
326 B
PHP
19 lines
326 B
PHP
--TEST--
|
|
XMLWriter::toStream() - open invalidated stream
|
|
--EXTENSIONS--
|
|
xmlwriter
|
|
--FILE--
|
|
<?php
|
|
|
|
$h = fopen("php://output", "w");
|
|
fclose($h);
|
|
|
|
try {
|
|
XMLWriter::toStream($h);
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
XMLWriter::toStream(): supplied resource is not a valid stream resource
|