php-src/ext/standard/tests/streams/stream_get_contents_001.phpt

23 lines
348 B
Plaintext
Raw Normal View History

2008-10-30 15:50:33 +00:00
--TEST--
stream_get_contents() - Testing offset out of range
--FILE--
<?php
$tmp = tmpfile();
2009-04-25 21:12:23 +00:00
fwrite($tmp, b"12345");
2008-10-30 15:50:33 +00:00
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";
@unlink($tmp);
?>
--EXPECT--
--
--
45--
--