mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
19 lines
334 B
PHP
19 lines
334 B
PHP
--TEST--
|
|
Close request before server sends a response
|
|
--SKIPIF--
|
|
<?php
|
|
include "skipif.inc";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include "php_cli_server.inc";
|
|
php_cli_server_start();
|
|
|
|
$fd = stream_socket_client("tcp://" . PHP_CLI_SERVER_ADDRESS);
|
|
fwrite($fd, "GET /index.php HTTP/1.0\r\nHost: hello");
|
|
fclose($fd);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|