Php/docs/function.socket-import-stream

来自菜鸟教程
跳转至:导航、​搜索

socket_import_stream

(PHP 5 >= 5.4.0, PHP 7)

socket_import_streamImport a stream


说明

socket_import_stream ( resource $stream ) : resource

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);?>

参见