mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
7aacc705d0
Closes GH-5958
13 lines
277 B
PHP
13 lines
277 B
PHP
--TEST--
|
|
php://fd wrapper: invalid file descriptor
|
|
--FILE--
|
|
<?php
|
|
fopen("php://fd/1023", "w");
|
|
|
|
echo "\nDone.\n";
|
|
?>
|
|
--EXPECTF--
|
|
Warning: fopen(php://fd/1023): Failed to open stream: Error duping file descriptor 1023; possibly it doesn't exist: [9]: %s in %s on line %d
|
|
|
|
Done.
|