在 PHP 中,您可以使用內(nèi)置的 HTTP 服務(wù)器來(lái)處理請(qǐng)求
server.php
,并添加以下代碼:<?php
$host = 'localhost';
$port = 8000;
// 創(chuàng)建一個(gè) TCP 套接字
$socket = stream_socket_server("tcp://$host:$port", $errno, $errorMessage);
if ($socket === false) {
echo "Error: $errorMessage ($errno)";
} else {
echo "HTTP Server is listening on $host:$port...\n";
}
while ($conn = stream_socket_accept($socket)) {
// 讀取客戶端請(qǐng)求
$request = '';
while (false !== ($chunk = fread($conn, 4096))) {
$request .= $chunk;
}
// 解析請(qǐng)求
list($method, $uri, $httpVersion) = explode(' ', substr($request, 0, strpos($request, "\r\n")));
// 處理請(qǐng)求
switch ($uri) {
case '/':
$response = "Hello, World!";
break;
default:
$response = "Not Found";
break;
}
// 發(fā)送響應(yīng)
$headers = "HTTP/1.1 200 OK\r\n" .
"Content-Type: text/html\r\n" .
"Connection: close\r\n" .
"Content-Length: " . strlen($response) . "\r\n" .
"\r\n";
fwrite($conn, $headers . $response);
fclose($conn);
}
這個(gè)簡(jiǎn)單的 HTTP 服務(wù)器會(huì)監(jiān)聽(tīng)指定的主機(jī)和端口(在本例中為 localhost:8000)。當(dāng)收到請(qǐng)求時(shí),它會(huì)解析請(qǐng)求并根據(jù)請(qǐng)求的 URI 返回相應(yīng)的響應(yīng)。
php server.php
http://localhost:8000
,您將看到 “Hello, World!” 作為響應(yīng)。請(qǐng)注意,這是一個(gè)非?;镜氖纠?,僅用于演示目的。在生產(chǎn)環(huán)境中,您可能需要使用更強(qiáng)大的 Web 服務(wù)器(如 Nginx 或 Apache)和 PHP 框架(如 Laravel 或 Symfony)來(lái)處理請(qǐng)求。