(PHP 5 >= 5.4.0, PHP 7)
Import a stream
resource socket_import_stream ( resource $stream )
Imports a stream that encapsulates a socket into a socket extension resource.
Parameters:
stream
The stream resource to import.
Returns:
Returns FALSE
or NULL
on failure.
Examples:
socket_import_stream() example
1 2 3 4 | <?php $sock = socket_import_stream( $stream ); ?> |
See also:
Please login to continue.