/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/cli/tests/php_cli_server_013.phpt
187 строк
4 KB
Pascal Chevrel
Fix GH-17956 Internal dev server 404 page is not responsive
03 мар 2025, 15:05
Не верифицирован
03 мар 2025, 15:05
ff88701
Код
Авторство
О чём код?
--TEST-- No router, no script --SKIPIF-- <?php include "skipif.inc"; ?> --FILE-- <?php include "php_cli_server.inc"; php_cli_server_start(NULL, NULL); $output = ''; $host = PHP_CLI_SERVER_HOSTNAME; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER POST / HTTP/1.1 Host: {$host} Content-Type: application/x-www-form-urlencoded Content-Length: 3 a=b HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); $output = ''; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER GET /main/style.css HTTP/1.1 Host: {$host} HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); $output = ''; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER HEAD /main/foo/bar HTTP/1.1 Host: {$host} HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); $output = ''; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER DELETE / HTTP/1.1 Host: {$host} HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); $output = ''; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER PUT / HTTP/1.1 Host: {$host} HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); $output = ''; $fp = php_cli_server_connect(); if(fwrite($fp, <<<HEADER PATCH / HTTP/1.1 Host: {$host} HEADER )) { while (!feof($fp)) { $output .= fgets($fp); } } echo preg_replace("/<style>(.*?)<\/style>/s", "<style>AAA</style>", $output), "\n"; fclose($fp); ?> --EXPECTF-- HTTP/1.1 404 Not Found Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d <!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>404 Not Found</title><style>AAA</style> </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/</code> was not found on this server.</p></body></html> HTTP/1.1 404 Not Found Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d <!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>404 Not Found</title><style>AAA</style> </head><body><h1>Not Found</h1><p>The requested resource <code class="url">/main/style.css</code> was not found on this server.</p></body></html> HTTP/1.1 404 Not Found Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d HTTP/1.1 405 Method Not Allowed Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d Allow: GET, HEAD, POST <!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>405 Method Not Allowed</title><style>AAA</style> </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> HTTP/1.1 405 Method Not Allowed Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d Allow: GET, HEAD, POST <!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>405 Method Not Allowed</title><style>AAA</style> </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html> HTTP/1.1 405 Method Not Allowed Host: %s Date: %s Connection: close X-Powered-By: PHP/%s Content-Type: text/html; charset=UTF-8 Content-Length: %d Allow: GET, HEAD, POST <!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><title>405 Method Not Allowed</title><style>AAA</style> </head><body><h1>Method Not Allowed</h1><p>Requested method not allowed.</p></body></html>