1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/ext/standard/tests/file/php_fd_wrapper_01.phpt
T
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

13 lines
147 B
PHP

--TEST--
php://fd wrapper: basic test
--FILE--
<?php
$f = fopen("php://fd/1", "wb");
fwrite($f, "hi!");
echo "\nDone.\n";
?>
--EXPECT--
hi!
Done.