我刚试过这段代码:
<?php
set_time_limit(0);
$address = '176.9.117.136';
$port = 9000;
$sock = socket_create(AF_INET, SOCK_STREAM, 0);
socket_bind($sock, $address, $port) or die('Could not bind to address');
while(1)
{
socket_listen($sock);
$client = socket_accept($sock);
$input = socket_read($client, 1024);
echo $input;
$output = 'URL: http://ip-of-my-server:9000/
HTTP/1.1 200 OK
Date: Tue, 10 Jul 2012 16:58:23 GMT
Server: TestServer/1.0.0 (PHPServ)
Last-Modified: Fri, 06 Jul 2012 14:29:58 GMT
ETag: "13c008e-1b9-4c42a193de580"
Accept-Ranges: bytes
Content-Length: 441
Vary: Accept-Encoding
Content-Type: text/html
';
socket_write($client, $output);
socket_close($client);
}
socket_close($sock);
?>
但有一个问题。Apache 不使用 $output 的内容作为标头,而是返回自己的标头...
我不知道为什么,因为我通过以下命令执行脚本:php webserv.php
.
但是它实际上可以工作,因为当我http://ip-of-my-server:9000/
从浏览器加载页面时,它会向我显示客户端在服务器上发送的标头,并将内容返回$output
给客户端(我的浏览器)。
如果可能的话,我只想在 PHP 中创建自己的网络服务器。我只想知道如何在没有 Apache 的情况下运行它,这样我就可以管理自己的 HTTP 标头。