PHP 8.3.4 Released!

stream_get_transports

(PHP 5, PHP 7, PHP 8)

stream_get_transportsRetrieve list of registered socket transports

Description

stream_get_transports(): array

Returns an indexed array containing the name of all socket transports available on the running system.

Parameters

This function has no parameters.

Return Values

Returns an indexed array of socket transports names.

Examples

Example #1 Using stream_get_transports()

<?php
$xportlist
= stream_get_transports();
print_r($xportlist);
?>

The above example will output something similar to:

Array (
  [0] => tcp
  [1] => udp
  [2] => unix
  [3] => udg
)

See Also

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top