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
(PHP 5 >= 5.4.0, PHP 7, PHP 8)
socket_import_stream — ストリームをインポートする
stream
インポートするストリームリソース。
失敗した場合は false
を返します。
バージョン | 説明 |
---|---|
8.0.0 | 成功した場合に、この関数は Socket クラスのインスタンスを返すようになりました。 これより前のバージョンでは、リソースを返していました。 |
例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);
?>
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