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	if (!function_exists("file_get_contents"))
12		die ("skip file_get_contents function is not found");
13	if (getenv("SKIP_ONLINE_TESTS")) die("skip online test");
14?>
15--FILE--
16<?php
17	var_dump(file_get_contents("http://checkip.dyndns.com",null,null,8000,1));
18?>
19--EXPECT--
20bool(false)
21