1--TEST--
2file_get_contents() test using offset parameter out of range
3--CREDITS--
4"Blanche V.N." <valerie_nare@yahoo.fr>
5"Sylvain R." <sracine@phpquebec.org>
6--INI--
7display_errors=false
8--SKIPIF--
9<?php
10	if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
11?>
12--FILE--
13<?php
14	var_dump(file_get_contents("php://stdin",null,null,8000,1));
15?>
16--EXPECT--
17bool(false)
18