socket_import_stream

(PHP 5 >= 5.4.0, PHP 7)

socket_import_streamImport a stream

Opis

socket_import_stream ( resource $stream ) : resource

Imports a stream that encapsulates a socket into a socket extension resource.

Parametry

stream

The stream resource to import.

Zwracane wartości

Returns FALSE or NULL on failure.

Przykłady

Przykład #1 socket_import_stream() example

<?php
$stream 
stream_socket_server("udp://0.0.0.0:58380"$errno$errstrSTREAM_SERVER_BIND); 
$sock   socket_import_stream($stream);
?>

Zobacz też:

add a note add a note

User Contributed Notes 1 note

up
4
lcharron at meditech dot com
8 years ago
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
To Top