AG广东会,山东十一选五,大发

?
  • AG广东会400电话
  • 微网小程序
  • AI电话山东十一选五
  • 电商代运营
  • AG广东会,山东十一选五,大发:全 部 栏 目

    AG广东会400电话 网络优化推广 AI电话山东十一选五 呼叫中心 网站建设 商标?知产 微网小程序 电商运营 彩铃?短信 增值拓展业务
    workerman结合laravel开发在线聊天应用的示例代码

    项目背景:

    最近由于公司的业务需求,需要用到聊天功能。而且有比较多的个性化需求需要定制。之前使用别人的聊天组件是基于微擎的。如果要移植到普通的H5在逻辑修改还有定制上存在比较多的困难。为此只能克服困难,自己搭建一个吧

    什么是Workerman?

    Workerman是一款 开源 高性能异步 PHP socket即时通讯框架 。支持高并发,超高稳定性,被广泛的用于手机app、移动通讯,微信小程序,手游服务端、网络游戏、PHP聊天室、硬件通讯、智能家居、车联网、物联网等领域的开发。 支持TCP长连接,支持Websocket、HTTP等协议,支持自定义协议。拥有异步Mysql、异步Redis、异步Http、MQTT物联网客户端、异步消息队列等众多高性能组件。

    开始实战吧!

    1.第一步我们先把workerman里需要用到的扩展composer下来吧

    "workerman/gateway-worker": "^3.0",
    "workerman/gatewayclient": "^3.0",
    "workerman/workerman": "^3.5",

    2.第二步我们到官方网站把demo全部下载下来,然后放到我们项目中的目录

    图片中我就把整个项目都放在了HTTP/Controller/Workerman中。

    3.第三步我们需要把把以下3个文件的引用部分修改为以下。不然会报路径错误

    start_businessworker,start_gateway,start_register

    require_once __DIR__ . '/../../../../../vendor/autoload.php';

    4.修改完成后我们就可以在liunx直接运行对应的启动文件

    php start.php start -d

    如果你是在window下就双击start_for_win.bat运行

    5.运行成功后,你就应该可以看到以下的界面

    到此我们搭建基于workerman的通信环境就已经完成。接下来我们就可以根据自己的项目需求进行开发。在此向大家重点说明。我们所有的聊天是逻辑都在目录中的Events.php进行修改。

    ---------------------------------华丽分割线---------------------------------------------------

    下面我给大家贴一下我编写的部分份代码。

    Event.php

    ?php
    /**
     * This file is part of workerman.
     *
     * Licensed under The MIT License
     * For full copyright and license information, please see the MIT-LICENSE.txt
     * Redistributions of files must retain the above copyright notice.
     *
     * @author walkorwalkor@workerman.net>
     * @copyright walkorwalkor@workerman.net>
     * @link http://www.workerman.net/
     * @license http://www.opensource.org/licenses/mit-license.php MIT License
     */
    
    /**
     * 用于检测业务代码死循环或者长时间阻塞等问题
     * 如果发现业务卡死,可以将下面declare打开(去掉//注释),并执行php start.php reload
     * 然后观察一段时间workerman.log看是否有process_timeout异常
     */
    //declare(ticks=1);
    
    /**
     * 聊天主逻辑
     * 主要是处理 onMessage onClose
     */
    use \GatewayWorker\Lib\Gateway;
    
    class Events
    {
      /**
       * 作者:何志伟
       * 当客户端连接上来的时候
       * 创建时间:2018/10/25
       * @param $client_id 此ID为gatewayworker 自动生成ID
       */
      public static function onConnect($client_id)
      {
        Gateway::sendToClient($client_id, json_encode(array(
          'type'   => 'init',
          'client_id' => $client_id
        )));
      }
    
    
      /**
       * 有消息时
       * @param int $client_id
       * @param mixed $message
       */
      public static function onMessage($client_id, $message)
      {
        // debug
        echo "client:{$_SERVER['REMOTE_ADDR']}:{$_SERVER['REMOTE_PORT']} gateway:{$_SERVER['GATEWAY_ADDR']}:{$_SERVER['GATEWAY_PORT']} client_id:$client_id session:".json_encode($_SESSION)." onMessage:".$message."\n";
    
        // 客户端传递的是json数据
        $message_data = json_decode($message, true);
        if(!$message_data)
        {
          return ;
        }
    
        // 根据类型执行不同的业务
        switch($message_data['type'])
        {
          // 客户端回应服务端的心跳
          case 'pong':
            return;
          // 客户端登录 message格式: {type:login, name:xx, room_id:1} ,添加到客户端,广播给所有客户端xx进入聊天室
          case 'login':
            // 判断是否有房间号
            if(!isset($message_data['room_id']))
            {
              throw new \Exception("\$message_data['room_id'] not set. client_ip:{$_SERVER['REMOTE_ADDR']} \$message:$message");
            }
    
            // 把房间号昵称放到session中
            $room_id = $message_data['room_id'];
            $client_name = htmlspecialchars($message_data['client_name']);
            $_SESSION['room_id'] = $room_id;
            $_SESSION['client_name'] = $client_name;
    
    
            // 获取房间内所有用户列表
            $clients_list = Gateway::getClientSessionsByGroup($room_id);
            foreach($clients_list as $tmp_client_id=>$item)
            {
              $clients_list[$tmp_client_id] = $item['client_name'];
            }
    //        $clients_list[$client_id] = $client_name;
    
            // 转播给当前房间的所有客户端,xx进入聊天室 message {type:login, client_id:xx, name:xx}
            $new_message = array('type'=>$message_data['type'], 'client_id'=>$client_id, 'client_name'=>htmlspecialchars($client_name), 'time'=>date('Y-m-d H:i:s'),'to'=>$message_data['to'],'room_id'=>$message_data['room_id'],
              'from'=>$message_data['from'],'tag'=>$message_data['tag']);
            Gateway::sendToGroup($room_id, json_encode($new_message));
            Gateway::joinGroup($client_id, $room_id);
    
            // 给当前用户发送用户列表
            $new_message['client_list'] = $clients_list;
            Gateway::sendToCurrentClient(json_encode($new_message));
            return;
    
          // 客户端发言 message: {type:say, to_client_id:xx, content:xx}
          case 'say':
            // 非法请求
            if(!isset($_SESSION['room_id']))
            {
              throw new \Exception("\$_SESSION['room_id'] not set. client_ip:{$_SERVER['REMOTE_ADDR']}");
            }
            $room_id = $_SESSION['room_id'];
            $client_name = $_SESSION['client_name'];
    
            // 私聊
    //        if($message_data['to_client_id'] != 'all')
    //        {
    //          $new_message = array(
    //            'type'=>'say',
    //            'from_client_id'=>$client_id,
    //            'from_client_name' =>$client_name,
    //            'to_client_id'=>$message_data['to_client_id'],
    //            'content'=>"b>对你说: /b>".nl2br(htmlspecialchars($message_data['content'])),
    //            'time'=>date('Y-m-d H:i:s'),
    //          );
    //          Gateway::sendToClient($message_data['to_client_id'], json_encode($new_message));
    //          $new_message['content'] = "b>你对".htmlspecialchars($message_data['to_client_name'])."说: /b>".nl2br(htmlspecialchars($message_data['content']));
    //          return Gateway::sendToCurrentClient(json_encode($new_message));
    //        }
    
            $new_message = array(
              'type'=>'say',
              'from_client_id'=>$client_id,
              'from_client_name' =>$client_name,
              'to_client_id'=>'all',
              'content'=>nl2br(htmlspecialchars($message_data['content'])),
              'time'=>date('Y-m-d H:i:s'),
    
            );
            return Gateway::sendToGroup($room_id ,json_encode($new_message));
        }
      }
      /**
       * 当客户端断开连接时
       * @param integer $client_id 客户端id
       */
      public static function onClose($client_id)
      {
        // debug
        echo "client:{$_SERVER['REMOTE_ADDR']}:{$_SERVER['REMOTE_PORT']} gateway:{$_SERVER['GATEWAY_ADDR']}:{$_SERVER['GATEWAY_PORT']} client_id:$client_id onClose:''\n";
    
        // 从房间的客户端列表中删除
        if(isset($_SESSION['room_id']))
        {
          $room_id = $_SESSION['room_id'];
          $new_message = array('type'=>'logout', 'from_client_id'=>$client_id, 'from_client_name'=>$_SESSION['client_name'], 'time'=>date('Y-m-d H:i:s'));
          Gateway::sendToGroup($room_id, json_encode($new_message));
        }
      }
    
    }
    

    客户端页面

    !DOCTYPE html>
    html lang="en">
    head>
      meta charset="UTF-8">
      title>与{{$to->name}}的对话/title>
      script type="text/javascript" src="{{asset('js')}}/swfobject.js">/script>
      script type="text/javascript" src="{{asset('js')}}/web_socket.js">/script>
      script type="text/javascript" src="{{asset('js')}}/jquery.min.js">/script>
      link href="{{asset('css')}}/jquery-sinaEmotion-2.1.0.min.css" rel="external nofollow" rel="stylesheet">
      link href="{{asset('css')}}/bootstrap.min.css" rel="external nofollow" rel="stylesheet">
      link href="{{asset('css')}}/style.css" rel="external nofollow" rel="stylesheet">
      script type="text/javascript" src="{{asset('js')}}/jquery-sinaEmotion-2.1.0.min.js">/script>
    
      {{--script src="https://code.jquery.com/jquery-3.3.1.min.js">/script>--}}
    
    /head>
    style>
      #sinaEmotion {
        z-index: 999;
        width: 373px;
        padding: 10px;
        display: none;
        font-size: 12px;
        background: #fff;
        overflow: hidden;
        position: absolute;
        border: 1px solid #e8e8e8;
        top: 100px;
        left: 542.5px;
      }
    /style>
    body ;
          });
        }
      });
    
    /script>
    

    这两个代码片段其实就是主要运行的核心片段。其他框架的自带参数需要各位自己去根据文档去调试优化。到此基于workerman的聊天用于功能demo已经搭建完毕。

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

    您可能感兴趣的文章:
    • Yii2结合Workerman的websocket示例详解
    上一篇:golang实现php里的serialize()和unserialize()序列和反序列方法详解
    下一篇:php+js实现裁剪任意形状图片
  • 相关文章
  • ?

    ? 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    workerman结合laravel开发在线聊天应用的示例代码 workerman,结合,laravel,开发,

    AG广东会官网入口(中国)官方网站-IOS/Android通用版(2026已更新)