mirror of
https://github.com/php/php-src.git
synced 2025-08-21 01:45:16 +02:00
12 lines
277 B
PHP
12 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.
|