1--TEST--
2basic function
3--INI--
4allow_url_fopen=1
5--SKIPIF--
6<?php
7include "skipif.inc";
8?>
9--FILE--
10<?php
11include "php_cli_server.inc";
12php_cli_server_start();
13var_dump(file_get_contents("http://" . PHP_CLI_SERVER_ADDRESS));
14?>
15--EXPECT--
16string(11) "Hello world"
17