socket_import_stream
(PHP 5 >= 5.4.0, PHP 7, PHP 8)
socket_import_stream — 导入 stream
参数
stream
-
要导入的 stream 资源。
返回值
发生错误时返回 false
。
示例
示例 #1 socket_import_stream() 示例
<?php
$stream = stream_socket_server("udp://0.0.0.0:58380", $errno, $errstr, STREAM_SERVER_BIND);
$sock = socket_import_stream($stream);
?>
+添加备注
用户贡献的备注 1 note
lcharron at meditech dot com ¶
9 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
备份地址:http://www.lvesu.com/blog/php/function.socket-import-stream.php