php-src/ext/standard/tests/file/stream_copy_to_stream_empty.phpt
2021-09-03 11:18:19 +02:00

19 lines
379 B
PHP

--TEST--
stream_copy_to_stream() from empty file
--FILE--
<?php
$tmp_empty_file = __DIR__ . "/stream_copy_to_stream_empty.tmp";
file_put_contents($tmp_empty_file, "");
$in = fopen($tmp_empty_file, 'r');
$out = fopen('php://memory', 'w');
var_dump(stream_copy_to_stream($in, $out));
?>
--CLEAN--
<?php
unlink(__DIR__ . "/stream_copy_to_stream_empty.tmp");
?>
--EXPECT--
int(0)