1--TEST--
2Close request before server sends a response
3--SKIPIF--
4<?php
5include "skipif.inc";
6?>
7--FILE--
8<?php
9include "php_cli_server.inc";
10php_cli_server_start();
11
12$fd = stream_socket_client("tcp://" . PHP_CLI_SERVER_ADDRESS);
13fwrite($fd, "GET /index.php HTTP/1.0\r\nHost: hello");
14fclose($fd);
15
16?>
17===DONE===
18--EXPECT--
19===DONE===
20