socket_addrinfo_connect

(PHP 7 >= 7.2.0, PHP 8)

socket_addrinfo_connectCreate and connect to a socket from a given addrinfo

Beschreibung

socket_addrinfo_connect(AddressInfo$address): Socket|false

Create a Socket instance, and connect it to the provided AddressInfo instance. The return value of this function may be used with the rest of the socket functions.

Parameter-Liste

address

AddressInfo instance created from socket_addrinfo_lookup()

Rückgabewerte

Returns a Socket instance on success or false on failure.

Changelog

VersionBeschreibung
8.0.0 On success, this function returns a Socket instance now; previously, a resource was returned.
8.0.0address ist nun eine AddressInfo-Instanz; vorher war es eine resource.

Siehe auch

To Top