I have a websocket server on AWS, currently I am connecting to this using JavaScript websockets. Is there a way to connect to the websocket server using PHP (preferably with no libraries). all I have to do is send a simple message to the websocket server, and then close connection. Hopefully with the message sent, the JavaScript on a second page listening to the websocket will pick up this message.
Any help would be much appreciated.
Connecting to a web socket server from php, requires to perform a handshake and to send your data in frames as defined by RFC6455. You can go to https://github.com/napengam/phpWebSocketServer and look into directory phpClient, there I have implemented a class to do all the above. This works with my web socket server, but it would be interesting to see if it will work with another web socket server. You might need to modify method writeWait, to not wait for an answer from the server. Good luck.