百科狗-知识改变命运!
--

socket_set_option() - socket通信函数

是丫丫呀12个月前 (11-21)阅读数 22#技术干货
文章标签缓存

socket_set_option()

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

Sets socket options for the socket

说明

socket_set_option(resource $socket,int $level,int $optname, mixed $optval): bool

The socket_set_option() function sets the option specified by the$optnameparameter, at the specified protocol$level, to the value pointed to by the$optvalparameter for the$socket.

参数

$socket

socket_set_option() - socket通信函数

A valid socket resource created with socket_create() or socket_accept().

$level

The$levelparameter specifies the protocol level at which the option resides. For example, to retrieve options at the socket level, a$levelparameter of SOL_SOCKET would be used. Other levels, such as TCP, can be used by specifying the protocol number of that level. Protocol numbers can be found by using the getprotobyname() function.

$optname

The available socket options are the same as those for the socket_get_option() function.

$optval

The option value.

返回值

成功时返回TRUE,或者在失败时返回FALSE

范例

socket_set_option() example

参见

  • socket_create()创建一个套接字(通讯节点)
  • socket_bind()给套接字绑定名字
  • socket_strerror()Return a string describing a socket error
  • socket_last_error()Returns the last error on the socket
  • socket_get_option()Gets socket options for the socket
To expand a bit more on what "tim at e2-media dot co dot nz" started.
SO_SNDTIMEO is one of the many constants you can use with socket_set_option.
See http://ca.php.net/manual/en/ref.sockets.php for the available Predefind Constants and visit http://man.he.net/man2/setsockopt for the meaning of the ones relevant.
Tim's example might seem at first a bit non-intuitive since he is using the SO_SNDTIMEO constant. Which means, if the socket has to send out data, it must do it within the limit specified - in his case 10 seconds. Usually you won't set a timeout for sending out data. Nevertheless, the example is valid, and there are situations where you need to do so.
A more intuitive use of socket_set_option would be to set a time out for a blocking socket (a socket that waits for data to be receive when read from). You would do this like so:
socket_set_option($socket,SOL_SOCKET, SO_RCVTIMEO, array("sec"=>0, "usec"=>100));
Notice that sec= 0 and usec= 100; Depending on how long you want your program to wait to recieve data, you might want to change these values.
Regards,
 drenintell
PLEASE NOTE
PHP 7.3.6, and probably many previous versions, automatically sets SO_REUSEADDR when you use stream_socket_server().
php_network_bind_socket_to_local_addr() is called at https://github.com/php/php-src/blob/623911f993f39ebbe75abe2771fc89faf6b15b9b/main/streams/xp_socket.c#L675 and defined at https://github.com/php/php-src/blob/61a6a6ec51297506c54f3c6e60ace9b892d0a3e4/main/network.c#L401 and if you take a look you'll see
#ifdef SO_REUSEADDR
      setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char*)&sockoptval, sizeof(sockoptval));
#endif
I initially thought I'd need to play with context options to turn this on, but no, the simplest single-arg call with no error checking and just an address, works for me.
strace your PHP binary to be 100% sure:
...
setsockopt(3, SOL_SOCKET, SO_REUSEADDR, [1], 4) = 0
...
The chances are you ARE using SO_REUSEADDR unless you're using a 100-year old UNIX clone in a month with a Z in it.
 Why is the size of the buffer 2 times that set by me? 
Lingering will sometimes not work when you're working with non-blocking sockets. Even if the socket is set to linger and you keep tying to close until the socket doesn't return an error and the resource is no longer identifiable as type 'Socket', the socket may STILL close without sending everything.
Therefore, in the event that you are using non-blocking sockets (which is preferable if you care at all about signaling), you should set the socket as blocking (socket_set_block()) before calling to close it. This will allow everything to flush before it returns.
Dustin Oprea
I would like to comment on the previous note regarding blocking sockets.
There is more to blocking sockets than waiting for data to be received when trying to be read upon, just to make example, a listening blocking socket will wait for a client to try to connect before it returns when you socket_accept() it.
To set a socket timeout value (assuming you've set it blocking) use:
socket_set_option(
 $socket,
 SOL_SOCKET, // socket level
 SO_SNDTIMEO, // timeout option
 array(
  "sec"=>10, // Timeout in seconds
  "usec"=>0 // I assume timeout in microseconds
  )
 );
Setting the socket timeout microseconds ('usec') does not work under Windows, at least under PHP/5.2.9:

Output on Windows box:
array(2) {
 ["sec"]=>
 int(1)
 ["usec"]=>
 int(0)
}
Output on Linux box:
array(2) {
 ["sec"]=>
 int(1)
 ["usec"]=>
 int(500000)
}
It appears that Winsock does not acknowledge timeout (send and receive) on Windows.
内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)