phpsocket.io
phpsocket.io copied to clipboard
Is there any support namespace?
Client:
var socket = io('http://api.diso.loc:2021/users')
Server:
$io->of('users')->on('connection', static function($socket) { echo 'OK'; });
Not working.
Try the codes.
$io->of('/users')->on('connection', static function($socket) { echo 'OK'; });