为什么从服务器获取响应需要MINUTE?

时间:2013-03-06 06:13:46

标签: php sockets

我是PHP套接字编程的新手,我找到了一个可以试验的例子,但是当我与服务器通信时,在服务器套接字关闭之前需要一分钟才能得到响应。

我有以下代码: SERVER.php

<?php 

$host = "127.0.0.1"; 
$port = 1234; 

// don't timeout! 
set_time_limit(0); 

// create socket 
$socket = socket_create(AF_INET, SOCK_STREAM, 0) or die("Could not create socket\n"); 

// bind socket to port 
$result = socket_bind($socket, $host, $port) or die("Could not bind to socket\n"); 

// start listening for connections 
$result = socket_listen($socket, 3) or die("Could not set up socket listener\n"); 

// accept incoming connections 
// spawn another socket to handle communication 
$spawn = socket_accept($socket) or die("Could not accept incoming connection\n"); 

// read client input 
$input = socket_read($spawn, 1024) or die("Could not read input\n"); 

// clean up input string 
$input = trim($input); 

// reverse client input and send back 
$output = strrev($input) . "\n"; 
socket_write($spawn, $output, strlen ($output)) or die("Could not write output\n"); 

// close sockets 
socket_close($spawn); 
socket_close($socket);
?>

如何让它立即响应?感谢

当我在终端中运行客户端代码时,我立即得到响应。但是当我添加一个文本框来从浏览器运行它时,只需1分钟就可以在我的浏览器上显示响应。

如果您需要查看我的CLIENT.php 这是......

<html>
<head>
</head>

<body>

<form action="<? echo $PHP_SELF; ?>" method="post">
Enter some text:<br>
<input type="Text" name="message" size="15"><input type="submit" name="submit" value="Send">
</form>

<?php

if (isset($_POST['submit']))
{
// form submitted

// where is the socket server?
$host="127.0.0.1";
$port = 1234;

// open a client connection
$fp = fsockopen ($host, $port, $errno, $errstr);

if (!$fp)
{
$result = "Error: could not open socket connection";
}
else
{
// get the welcome message
fgets ($fp, 1024);
// write the user string to the socket
fputs ($fp, $_POST['message']);
// get the result
$result .= fgets ($fp, 1024);
// close the connection
fputs ($fp, "exit");
fclose ($fp);

// trim the result and remove the starting ?
$result = trim($result);

// now print it to the browser
}
?>
Server said: <b><? echo $result; ?></b>
<?
}
?>

</body>
</html>

1 个答案:

答案 0 :(得分:1)

如果我没弄错的话,你的服务器先读取,然后然后写回一个响应。您的客户端执行相同的事情,期待一条“欢迎消息”,我无法看到您的服务器发送过。所以他们都坐在那里等待彼此的数据。也许评论你得到(看似不存在的)欢迎信息的那一行可以缓解这种僵局。

// get the welcome message
// fgets ($fp, 1024);

那,或者确保在客户端连接后立即从服务器发送欢迎消息。

你说它可以立即在终端中使用。我只能猜测是否会以某种方式发送换行符(作为ENTER键的结果)来完成客户端中的fgets调用。

此外,您似乎也应该能够使用客户端中服务器中使用的socket_*函数。请阅读this以获取更多信息。