worker_server.php配置文件中指定自定义类
'protocol' => 'websocket', // 协议 支持 tcp udp unix http websocket text
'host' => '0.0.0.0', // 监听地址
'port' => 2345, // 监听端口
'socket' => '', // 完整监听地址
'context' => [], // socket 上下文选项
'worker_class' => 'app\socket\MySocket', // 自定义Workerman服务类名 支持数组定义多个服务
// 支持workerman的所有配置参数
'name' => 'thinkphp',
'count' => 1, //注意进程数量需要为1
'daemonize' => false,
'pidFile' => '',
app\socket\MySocket
<?php
namespace app\socket;
use think\Log;
use think\worker\Server;
use Workerman\Connection\TcpConnection;
use Workerman\Worker;
class MySocket extends Server
{
public function getSocket(){
return $this->socket;
}
public function onWorkerStart($worker){
$inner_text_worker = new \Workerman\Worker('Text://0.0.0.0:5678');
$inner_text_worker->onMessage = function($connection, $buffer)
{
global $worker;
// $data数组格式,里面有uid,表示向那个uid的页面推送数据
$data = json_decode($buffer, true);
$uid = $data['uid'];
// 通过workerman,向uid的页面推送数据
// $ret = sendMessageByUid($uid, $data['percent']);
$this->broadcast("11222");
// 返回推送结果
$connection->send('ok');
};
$inner_text_worker->listen();
}
function broadcast($message)
{
foreach ($this->worker->connections as $v){
if ($v->user_type == 2){
$v->send("sadasdsada");
}else{
$v->send("你是狗");
}
}
}
public function onConnect($connection){
print_r("connect".PHP_EOL);
}
public function onMessage($connection, $data){
$data =(json_decode($data,true));
// 判断当前客户端是否已经验证,既是否设置了uid
if(!isset($connection->uid))
{
// 没验证的话把第一个包当做uid(这里为了方便演示,没做真正的验证)
$connection->user_type = $data['type'] ?? 1;
/* 保存uid到connection的映射,这样可以方便的通过uid查找connection,
* 实现针对特定uid推送数据
*/
// $this->worker->uidConnections[$connection->uid] = $connection;
// var_dump( $this->worker->uidConnections );
var_dump($connection);
return;
}
}
public function onClose(){
print_r("close".PHP_EOL);
if(isset($connection->uid))
{
// 连接断开时删除映射
unset($this->worker->uidConnections[$connection->uid]);
}
}
public function onError(){
print_r("error".PHP_EOL);
}
}
在控制器中 发送socket
public function index()
{
$client = stream_socket_client('tcp://127.0.0.1:5678', $errno, $errmsg, 1);
// 推送的数据,包含uid字段,表示是给这个uid推送
$data = array('uid' => 'uid1', 'percent' => '88%');
// 发送数据,注意5678端口是Text协议的端口,Text协议需要在数据末尾加上换行符
fwrite($client, json_encode($data) . "\n");
// 读取推送结果
echo fread($client, 8192);
}
前端测试代码
<!DOCTYPE html>
<html>
<head>
<title>websocket</title>
</head>
<body>
<input type="button">
</body>
<script type="text/javascript">
var ws = new WebSocket("ws://0.0.0.0:2346");
//申请一个WebSocket对象,参数是服务端地址,同http协议使用http://开头一样,WebSocket协议的url使用ws://开头,另外安全的WebSocket协议使用wss://开头
ws.onopen = function(){
//当WebSocket创建成功时,触发onopen事件
var bind = '{"name":"zhangsan","type":1}'
console.log(bind)
ws.send(bind); //将消息
ws.send(bind); //将消息发送到服务端
}
ws.onmessage = function(e){
//当客户端收到服务端发来的消息时,触发onmessage事件,参数e.data包含server传递过来的数据
console.log(e.data);
}
ws.onclose = function(e){
//当客户端收到服务端发送的关闭连接请求时,触发onclose事件
console.log("close");
}
ws.onerror = function(e){
//如果出现连接、处理、接收、发送数据失败的时候触发onerror事件
console.log(error);
}
</script>
</html>