略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: socket_import_stream

2024-04-25

socket_import_stream

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

socket_import_streamImport a stream

说明

socket_import_stream(resource $stream): Socket|false

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

参数

stream

The stream resource to import.

返回值

Returns false on failure.

更新日志

版本 说明
8.0.0 On success, this function returns a Socket instance now; previously, a resource was returned.

范例

示例 #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);
?>

参见

add a noteadd a note

User Contributed Notes 1 note

up
4
lcharron at meditech dot com
6 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

官方地址:https://www.php.net/manual/en/function.socket-import-stream.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3