zoukankan      html  css  js  c++  java
  • swoole的websockte例子

    服务器的环境,建议用bt.cn的一键环境

    服务端:

    <?php
    /**
     * Created by PhpStorm.
     * User: Administrator
     * Date: 2019523 0023
     * Time: 15:12
     */
    
    class Server{
    
        public function __construct()
        {
            $sw = new swoole_websocket_server('0.0.0.0',9501);
    
            $sw->on('open',function($server, $request){
    
                echo '客户端已经连接'.PHP_EOL;
            });
    
            $sw->on('message',function(swoole_websocket_server $server, $frame){
    
                echo PHP_EOL. '服务端已经收到消息';
                echo PHP_EOL. "客户端id: " .$frame->fd ; //客户端id
                echo PHP_EOL. "接收的消息: " .$frame->data ; //接收的数据
                $server->push($frame->fd,"服务把你的信息原封不动的给你了-->".$frame->data);
    
            });
    
            $sw->on('close',function($ser, $fd){
    
                echo '连接已经关闭';
            });
    
            $sw->start();
    
        }
    
    }
    
    new Server();

    客户端:

    <html>
    <head>
        <title>demo</title>
        <script src="https://cdn.bootcss.com/jquery/1.9.1/jquery.min.js"></script>
    </head>
    <body>
    <input type="text" id="content">
    <input type="button" value="send" id="send">
    <script type="text/javascript">
      var ws = new WebSocket("ws://192.168.56.101:9501");
      ws.onopen = function(){
        console.log("握手成功");
      }
      ws.onmessage = function(e){
        console.log("message:" + e.data);
      }
      ws.onerror = function(){
        console.log("error");
      }
      $("#send").click(function(){
        content = $("#content").val();
        console.log(content);
        ws.send(content);
      })
    </script>
    </body>
    </html>

    结果:

  • 相关阅读:
    ASP.NET 学习日志
    igoogle 小工具
    nios ann 语音识别
    ASP 3.5 读书笔记
    C# delegate and event 续
    paper
    网站白痴的 ASP.NET website 学习日志
    盒子模型
    将对象序列化成json
    不错的Oracle 存储过程例子
  • 原文地址:https://www.cnblogs.com/fps2tao/p/10918620.html
Copyright © 2011-2022 走看看