mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
27542db4e7
Fixed typo Moved 501 response from dispatch to event_read_request Return return value of send_error_page
44 lines
780 B
PHP
44 lines
780 B
PHP
--TEST--
|
|
Bug #61679 (Error on non-standard HTTP methods)
|
|
--SKIPIF--
|
|
<?php
|
|
include "skipif.inc";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include "php_cli_server.inc";
|
|
php_cli_server_start(<<<'PHP'
|
|
echo "This should never echo";
|
|
PHP
|
|
);
|
|
|
|
list($host, $port) = explode(':', PHP_CLI_SERVER_ADDRESS);
|
|
$port = intval($port)?:80;
|
|
|
|
$fp = fsockopen($host, $port, $errno, $errstr, 0.5);
|
|
if (!$fp) {
|
|
die("connect failed");
|
|
}
|
|
|
|
// Send a request with a fictitious request method,
|
|
// I like smurfs, the smurf everything.
|
|
if(fwrite($fp, <<<HEADER
|
|
SMURF / HTTP/1.1
|
|
Host: {$host}
|
|
|
|
|
|
HEADER
|
|
)) {
|
|
while (!feof($fp)) {
|
|
echo fgets($fp);
|
|
// Only echo the first line from the response,
|
|
// the rest is not interesting
|
|
break;
|
|
}
|
|
}
|
|
|
|
fclose($fp);
|
|
?>
|
|
--EXPECTF--
|
|
HTTP/1.1 501 Not Implemented
|