socket_select(), 请大神讲授
程序员文章站
2022-05-08 15:19:12
...
socket_select(), 请大神讲解
请大神帮忙解释一下 socket_select() 这个函数的作用,看php手册大致意思是阻塞的意思,请问什么情况下阻塞,什么时候继续往下执行啊,参数如下
------解决方案--------------------
你从哪里看出是阻塞的?
socket_select 接受三个套接字数组,分别检查数组中的套接字是否处于可以操作的状态(返回时只保留可操作的套接字)
使用最多的是 $read,因此以读为例
在套接字数组 $read 中最初应保有一个服务端监听套接字
每当该套接字可读时,就表示有一个用户发起了连接。此时你需要对该连接创建一个套接字,并加入到 $read 数组中
当然,并不只是服务端监听的套接字会变成可读的,用户套接字也会变成可读的,此时你就可以读取用户发来的数据了
socket_select 只在套接字数组发生了变化时才返回。也就是说,一旦执行到 socket_select 的下一条语句,则必有一个套接字是需要你操作的
请大神帮忙解释一下 socket_select() 这个函数的作用,看php手册大致意思是阻塞的意思,请问什么情况下阻塞,什么时候继续往下执行啊,参数如下
int socket_select ( array &$read , array &$write , array &$except , int $tv_sec [, int $tv_usec = 0 ] );
//socket_select() accepts arrays of sockets and waits for them to change status. Those coming with BSD sockets background //will recognize that those socket resource arrays are in fact the so-called file descriptor sets. Three independent arrays of //socket resources are watched.
//param
/*
read
The sockets listed in the read array will be watched to see if characters become available for reading (more precisely, to see if a read will not block - in particular, a socket resource is also ready on end-of-file, in which case a socket_read() will return a zero length string).
write
The sockets listed in the write array will be watched to see if a write will not block.
except
The sockets listed in the except array will be watched for exceptions.
tv_sec
The tv_sec and tv_usec together form the timeout parameter. The timeout is an upper bound on the amount of time elapsed before socket_select() return. tv_sec may be zero , causing socket_select() to return immediately. This is useful for polling. If tv_sec is NULL (no timeout), socket_select() can block indefinitely.
*/
------解决方案--------------------
你从哪里看出是阻塞的?
socket_select 接受三个套接字数组,分别检查数组中的套接字是否处于可以操作的状态(返回时只保留可操作的套接字)
使用最多的是 $read,因此以读为例
在套接字数组 $read 中最初应保有一个服务端监听套接字
每当该套接字可读时,就表示有一个用户发起了连接。此时你需要对该连接创建一个套接字,并加入到 $read 数组中
当然,并不只是服务端监听的套接字会变成可读的,用户套接字也会变成可读的,此时你就可以读取用户发来的数据了
socket_select 只在套接字数组发生了变化时才返回。也就是说,一旦执行到 socket_select 的下一条语句,则必有一个套接字是需要你操作的
相关文章
相关视频
上一篇: php多位数组合并的三种方式
推荐阅读
-
关于ucenter通讯过程的代码的!CSDN大神多!慕名而来!请多指教!
-
mysql分组查询查询每个组前面40条数据里面某个字段不能连续超过8条为空的记录,请大神指导
-
请全能大神解答,此功能用PHP如何写?JSP代码已有,求翻译或者思路!路过请看看
-
请大神给我写条sql查询语句,mysql 数据库,谢谢
-
视图下拉列表接收控制器传来的值,并选中下拉类表中该值相对应的选项(新手笔记,请各位大神指教)
-
学习C#自作计算器,菜鸟初学,有大神的指点,希望做的不够好的地方请大家多多指导。同时希望非常无聊的大神能加些其它计算进去
-
请大神指教,怎么跨域删除cookie
-
关于smarty的is_cached()方法的问题请大神帮忙.万分感激.
-
PHP有关问题请大神帮忙
-
php-PHP转Java该怎么实现,请大神帮忙