PHP实现Socket服务器的代码

PHP实现Socket服务器的代码

内容导读

收集整理的这篇技术教程文章主要介绍了PHP实现Socket服务器的代码,小编现在分享给大家,供广大互联网技能从业者学习和参考。文章包含2582字,纯文字阅读大概需要4分钟

内容图文

<?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  to end reading (depending on the type parameter, see below). */ /* if(!$buf = trim($buf)) continue; // ???? if($buf == "quit") break; if($buf == "shutdown"){ socket_close($msgSocket); break 2; } $tallBack = "You say:$bufn"; socket_write($msgSocket,$tallBack,strlen($tallBack)); */ if(ord($buf) != 13) $command .= $buf; else{ $command1 = "You Say:$commandrn"; socket_write($msgSocket,$command1,strlen($command1)); echo "User typed:".$command."<br />"; $command = ""; } } socket_close($msgSocket); } socket_close($socket); ?>

然后打开CMD,输入:telnet 192.40.7.93 10000,自己体验去吧!

注,要把:php_sockets.dll 打开

以上就介绍了 PHP实现Socket服务器的代码,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

内容总结

以上是为您收集整理的PHP实现Socket服务器的代码全部内容,希望文章能够帮你解决PHP实现Socket服务器的代码所遇到的程序开发问题。 如果觉得技术教程内容还不错,欢迎将网站推荐给程序员好友。

内容备注

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。


本文关键词:

联系我们

在线咨询:点击这里给我发消息

邮件:w420220301@qq.com