--TEST--
stream_get_contents() - Testing offset out of range
--FILE--
<?php

$tmp 
tmpfile();

fwrite($tmpb"12345");

echo 
stream_get_contents($tmp25), "--\n";
echo 
stream_get_contents($tmp2), "--\n";
echo 
stream_get_contents($tmp23), "--\n";
echo 
stream_get_contents($tmp2, -1), "--\n";

@
unlink($tmp);

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