PHP实现Socket服务器的代码
发布时间:2020-05-12 02:29:44 所属栏目:PHP教程 来源:互联网
导读:PHP实现Socket服务器的代码
<?php ob_implicit_flush(); set_time_limit(0); $address = "192.40.7.93";//换成你自己的地址 $port = 10000; if(($socket = socket_create(AF_INET,SOCK_STREAM,SOL_TCP)) == false) echo "错误(socket_create):".socket_strerror(socket_last_error())."<br />"; if(socket_bind($socket,$address,$port) == false) echo "错误(socket_bind):".socket_strerror(socket_last_error())."<br />"; if(socket_listen($socket) == false) echo "错误(socket_listen):".socket_strerror(socket_last_error())."<br />"; /* After the socket socket has been created using socket_create() and bound to a name with socket_bind(), it may be told to listen for incoming connections on socket. */ while(true){ if(($msgSocket = socket_accept($socket)) == false){ echo "错误(socket_accept):".socket_strerror(socket_last_error())."<br />"; break; } /* this function will accept incoming connections on that socket. Once a successful connection is made, a new socket resource is returned, which may be used for communication. If there are multiple connections queued on the socket, the first will be used. If there are no pending connections, socket_accept() will block until a connection becomes present. If socket has been made non-blocking using socket_set_blocking() or socket_set_nonblock(), FALSE will be returned. */ $msg = "Welcome!<br />"; //socket_write($msg,$msg,strlen($msg)); $command = ""; while(true){ if(($buf = socket_read($msgSocket,2048,PHP_BINARY_READ)) == false){ echo "错误(socket_read):".socket_strerror(socket_last_error())."<br />"; break 2; } /* The function socket_read() reads from the socket resource socket created by the socket_create() or socket_accept() functions. The maximum number of bytes read is specified by the length parameter. Otherwise you can use r, n, or |