How connect to created stream from another script?

Viewed 24

A websocket server is created in one script

$server_socket = stream_socket_server('tcp://0.0.0.0:9000', $errno, $message);

How to connect and send data to this stream from another local PHP script?

1 Answers
Related