merlinthemagic / mtm-ws-socket
Web sockets for PHP 7
dev-master
2023-05-11 13:59 UTC
Requires
- php: >=7.3.0
- merlinthemagic/mtm-certs: >=0.0.1
This package is auto-updated.
Last update: 2025-03-11 17:53:47 UTC
README
Server:
Listen on port:
$ipAddr = "127.0.0.1";
$port = 5433;
$sockObj = \MTM\WsSocket\Factories::getSockets()->getNewServer();
$sockObj->setConnection("tcp", $ipAddr, $port);
New clients:
When a new client registers you can get a call back, letting you validate if you will allow that client to connect or not.
The new socket will be passed to the method after connect.
If you reject the new client throw, otherwise return true.
$sockObj->setNewClientCb($someObject, "someMethod");