/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/cli/tests/bug61679.phpt
38 строк
665 B
Nikita Popov
Add php_cli_server_connect() helper
08 апр 2020, 18:10
08 апр 2020, 18:10
1327491
Код
Авторство
О чём код?
--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 ); $host = PHP_CLI_SERVER_HOSTNAME; $fp = php_cli_server_connect(); // 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); ?> --EXPECT-- HTTP/1.1 501 Not Implemented