summaryrefslogtreecommitdiff
path: root/ext/standard/tests/streams/stream_get_contents_001.phpt
blob: 6f5abcb782d6ee04ec945b43d2d30eae1d42629d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
stream_get_contents() - Testing offset out of range
--FILE--
<?php

$tmp = tmpfile();

fwrite($tmp, "12345");

echo stream_get_contents($tmp, 2, 5), "--\n";
echo stream_get_contents($tmp, 2), "--\n";
echo stream_get_contents($tmp, 2, 3), "--\n";
echo stream_get_contents($tmp, 2, -1), "--\n";

?>
--EXPECT--
--
--
45--
--