php8.5
Home/ Manual/ sockets / functions/ socket_import_stream

socket_import_stream

PHP function Edit on GitHub ✎

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

Import a stream

Description

socket_import_stream(resource $stream): Socket|false

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

Parameters

stream

The stream resource to import.

Return Values

Returns false on failure.

Changelog

VersionDescription
8.0.0On success, this function returns a Socket instance now; previously, a resource was returned.

Examples

socket_import_stream() example

php
<?php
$stream = stream_socket_server("udp://0.0.0.0:58380", $errno, $errstr, STREAM_SERVER_BIND); 
$sock   = socket_import_stream($stream);
?>

See Also

Source: reference/sockets/functions/socket-import-stream.xml · from the official PHP manual (php/doc-en)