©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 5 >= 5.4.0)
socket_import_stream — Import a stream
$stream
)Imports a stream that encapsulates a socket into a socket extension resource.
stream
The stream resource to import.
Returns FALSE
or NULL
on failure.
Example #1 socket_import_stream() example
<?php
$stream = stream_socket_server ( "udp://0.0.0.0:58380" , $errno , $errstr , STREAM_SERVER_BIND );
$sock = socket_import_stream ( $stream );
?>
[#1] lcharron at meditech dot com [2015-11-18 20:34:18]
This function does not support SSL connections.
I have submitted a bug/enhacement request because of this: https://bugs.php.net/bug.php?id=70939
[#2] ryan dot yoosefi at gmail dot com [2014-10-14 04:55:41]
Note: This is only for raw socket access, receiving and sending does not honor things like encryption.
As of 5.4, 5.5, and 5.6, the only methods that use the stream-aspect are:
- socket_close
- socket_set_block
- socket_set_nonblock
The rest are performed directly on the stream's underlying socket.