所以我有这个服务器代码,它适用于我的客户端。但它从客户端获取一条消息并反向发送一条消息。这是代码: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);
?>
如何编辑此代码以便它可以连续运行?客户端当然不必熬夜,它只会打开一个新的套接字,发送一条消息,从服务器取回并关闭套接字。下次我想发消息时,我会再次执行上一步。
现在,如果我发送一条消息并从服务器获得响应,它们都会关闭套接字。请帮我修改服务器端,使其不会关闭套接字并等待新连接。
我尝试添加一个while循环,但是一旦客户端关闭,服务器就会再次关闭,说它无法再从客户端读取。
谢谢