1
0
mirror of https://github.com/php/php-src.git synced 2026-04-26 09:28:21 +02:00
Files
2020-12-17 09:11:10 -07:00

18 lines
451 B
PHP

--TEST--
php://fd wrapper: invalid file descriptor
--SKIPIF--
<?php
// At least on Mac 10.14 Mojave; not sure about older versions
if (strtolower(PHP_OS) == 'darwin') die('skip: the warning output is different on MacOS');
?>
--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.