js代码
var socket = io("xxxxxx"); // uid可以是自己网站的用户id,以便针对uid推送以及统计在线人数 var uid = "xxxxx"; // socket连接后以uid登录 socket.on('connect', function(){ socket.emit('login', uid); });
这段代码怎么用php写,
没人知道吗?
http://www.workerman.net/web-sender 看下这个
这个没有php链接,只有js 的
下面有php的curl调用的代码
@1:大神,用你这个方法workerman会返回400 Bad Request Invalid handshake data for websocket的错误,咋解决?
你访问错端口了,请严格按照主页教程来
@1:我知道了,这个要安装webmsg那个推送框架,我以为这样可以连接wokerman框架。。
curl是发送消息,我现在想实现的,是我在一个php页面可以登录scoket,不需要用js登录
$post_data = array( "type" => "publish", "content" => "这个是推送的测试数据", "to" => $to_uid, ); 这个type有登陆的吗?
没人知道吗?
http://www.workerman.net/web-sender
看下这个
这个没有php链接,只有js 的
下面有php的curl调用的代码
@1:大神,用你这个方法workerman会返回400 Bad Request
Invalid handshake data for websocket的错误,咋解决?
你访问错端口了,请严格按照主页教程来
@1:我知道了,这个要安装webmsg那个推送框架,我以为这样可以连接wokerman框架。。
curl是发送消息,我现在想实现的,是我在一个php页面可以登录scoket,不需要用js登录
$post_data = array(
"type" => "publish",
"content" => "这个是推送的测试数据",
"to" => $to_uid,
); 这个type有登陆的吗?